@charset "UTF-8";
/******************************************************************************
	/contact/index.view.php
******************************************************************************/
.page-front .detail-info {
    max-width: 1000px;
    margin: 0 auto 80px;
}
.page-header__title {
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 32px;
    text-align: center;
    color: #5cbaa8;
}
hr {
    max-width: 830.5px;
    height: 0px;
    background: transparent;
    border: 6px solid #e2f8f7;
    margin: 0 auto 48px auto;
}
.contactform-description {
    font-size: 1rem;
    text-align: center;
    margin: 3em 0 3em 0;
}
.form-container {
    font-size: 1rem;
}
.text-box {
    display: inline-block;
    height: 64px;
    margin: 0;
    background: #e0e0e0;
    opacity: 0.5;
    border: none;
    outline: none;
    border-radius: 0px;
    padding-left: 1.5em;
    padding-right: 1.5em;
}
input::placeholder {
    color: #454545;
}
.select-has-mark-wrapper {
	position: relative;
	max-width: 350px;
}
.select-has-mark-wrapper::after {
    content: "";
    z-index: 100;
    position: absolute;
	right: 16px;
    top: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-top: 16px solid #000000;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    margin: auto 0;
    opacity: 1;
}
.selection-list {
    width: 100%;
    height: 58px;
    background-color: #e0e0e0;
    opacity: 0.5;
    -webkit-appearance: none;
    appearance: none;
    border-style: none;
    padding-left: 1.5em;
}
.remarks {
    overflow: hidden;
    display: block;
    background-color: #e0e0e0;
    opacity: 0.5;
    -webkit-appearance: none;
    appearance: none;
    padding: 1.5em;
    border-style: none;
	margin: 0;
}
.check-request {
    display: flex;
	column-gap: 18px;
    width: 100%;
}
/*チェックボックスリセット */
input[type="checkbox"]  {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }

/* チェックボックスデザイン */
input[type="checkbox"] {
    cursor: pointer;
    padding-left: 30px;
    vertical-align: middle;
    position: relative;
}
input[type="checkbox"]::before,
input[type="checkbox"]::after {
    content: "";
    display: block;
    position: absolute;
}
input[type="checkbox"]::before {
    background-color: #fff;
    border-radius: 0%;
    border: 1px solid #707070;
    width: 22px;
    height: 22px;
    transform: translateY(-50%);
    top: 50%;
    left: 5px;
}
input[type="checkbox"]::after {
    border-bottom: 3px solid #666464;
    border-left: 3px solid #666464;
    opacity: 0;
    height: 6px;
    width: 11px;
    transform: rotate(-45deg);
    top: -3px;
    left: 10px;
}
input[type="checkbox"]:checked::after {
    opacity: 1;
}
.important-point{
    font-weight: 500;
    font-size: 18px;
}
.policy-link {
    text-align: left;
    color: #4687d6;
}
.policy-link:hover {
    border-bottom: 1px solid #4687d6;
}
.submit-style{
    width: 100%;
    text-align: center;
}
input[type="submit"]{
    overflow: hidden;
    font-family: "Noto Sans JP";
    font-weight: 900;
    font-size: 18px;
    line-height: 35px;
    text-align: center;
    color: #fff;
    max-width: 385px;
    height: 56px;
    border-radius: 5px;
    background: #5cbaa8;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    margin-top: 1.5em;
}
input[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}
.contact__form-container {
	display: flex;
	flex-direction: column;
	row-gap: 16px;
}
.contact__form-row {
	display: grid;
	grid-template-columns: 252px 1fr;
	align-items: center;
	column-gap: 48px;
	padding: 20px 0;
	border-top: 1px solid #484848;
}
.contact__form-row:last-child {
	border-bottom: 1px solid #484848;
}
.contact__form-th {
	font-weight: 500;
	font-size: 18px;
}
.contact__form-td {
	font-size: 16px;
}
.contact__form-th-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}
.adjust-required-span {
	width: 48px;
    text-align: center;
    font-weight: bold;
    font-size: 13px;
    color: #fff;
    background-color: #e82736;
}
.contact__form-notice {
	padding: 0 1.5em;
	margin-top: 8px;
}
@media screen and (min-width: 769px) {
    .page-header__title {
        margin-top: 100px;
    }
}
@media screen and (max-width: 768px) {
    .page-header__logo{
        display: none;
    }
    .page-header__title {
        margin-top: 120px;
    }
    .table-row .required-style {
        display: none;
    }
    .table-row .required-style span{
        display: none;
    }
    .table-row{
        display: flex;
        border: none;
    }
	.contact__form-row {
		grid-template-columns: 1fr;
		row-gap: 12px;
	}
	.contact__form-th-title {
		justify-content: flex-start;
		column-gap: 8px;
	}
}
/******************************************************************************
	/contact/confirm.view.php
******************************************************************************/
.table-cell .confirm-require{
    color: #e82736;
    margin: 0;
}
.deficiency{
    color: #e82736;
    font-weight: bold;
    margin-bottom: 0;
}
.return{
    margin-top: 4em;
}
.return input[type="submit"]{
    margin-top: 1em;
    margin-right: 2em;
}
input[type="button"]{
    overflow: hidden;
    font-family: "Noto Sans JP";
    font-weight: 900;
    font-size: 18px;
    line-height: 35px;
    text-align: center;
    color: #fff;
    max-width: 385px;
    height: 56px;
    border-radius: 5px;
    background: #5cbaa8;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    margin-top: 1.5em;
    margin-right: 2em;
}

/******************************************************************************
	/contact/complete.view.php
******************************************************************************/
.complete-page{
    text-align: center;
    margin-top: 8em;
    margin-bottom: 20em;
}
.complete-page h3 {
    margin-bottom: 1em;
}
.circle {
    position: relative;
    top: -800px;
    left: -200px;
    background-color: #e2f8f7;
    display: inline-block;
    width: 1600px;
    height: 1600px;
    border-radius: 50%;
    transform: rotate(15deg);
}
.complete-header {
margin-top: -1600px;
}