/*======= common style =======*/

/* import font */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@500&display=swap');
/* import font */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    line-height: 1.4;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #000000;
    overflow-x: hidden;
}

@media only screen and (max-width: 360px) {
    body {
        min-width: 320px;
    }
}

a {
    text-decoration: none;
    color: unset;
    transition: 0.2s;
}

a:hover {
    text-decoration: none;
    opacity: 0.7;
}

ul,
li {
    list-style-type: none;
    margin: 0px;
}

img {
    display: block;
    max-width: 100%;
    transition: .2s;
				image-rendering: -webkit-optimize-contrast;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0px;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.container {
    max-width: 1400px;
    padding: 0 20px;
    margin: 0 auto;
    transition: 0.2s;
}

.container-small {
    max-width: 1040px;
    padding: 0 20px;
    margin: 0 auto; 
    transition: 0.2s;
}

.clear:after {
 content: "";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.clear {
 display: inline-table;
 overflow: hidden;
}

/* mac \*/
* html .clear {
 height: 1%;
}
.clear {
 display: block;
}
/* macend */


.alignleft {
	float: left;
	margin: 0 40px 40px 0;
}

.alignright {
	float: right;
	margin: 0 0 40px 40px;
}

.aligncenter {
	display: block !important;
	margin: 0 auto 40px;
}

.pc {
	display: block;
}

.sp {
	display: none;
}

@media (max-width: 1500px) {
    .container {
        max-width: 1200px;
    }
}

@media (max-width: 1300px) {
    .container {
        max-width: 1000px;
    }
    section.section {
        padding: 80px 0 !important;
    }
}

@media (max-width: 1024px) {
    .container {
        max-width: 960px;
    }
    section.section {
        padding: 60px 0 !important;
    }
				.pc {
	display: none;
}

.sp {
	display: block;
}

}

.cl-white {
    color: #ffffff;
}

.noto-sans-medium {
    font-weight: 500;
    font-family: 'Noto Sans JP', sans-serif;
}

.noto-sans-regular {
    font-weight: 400;
    font-family: 'Noto Sans JP', sans-serif;
}

.font-oswald-regular {
    font-weight: 400;
}

.font-oswald-medium {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
}

.d-flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.align-center {
    align-items: center;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

/* =====start - header===== */
.header__logo {
    padding-left: 30px;
}

.header__logo img {
    max-width: 260px;
}

.header__menu {
    padding: 0px 16px;
}

.header__menu li {
    padding: 12.5px;
}

.header__menu li.active a {
    color: #174f9f;
}

.header__menu li a {
    display: block;
    font-size: 14.5px;
    padding: 4px 0px;

    -webkit-transition: background-size 0.6s cubic-bezier(0.86, 0, 0.07, 1), color 0.6s cubic-bezier(0.86, 0, 0.07, 1);
    transition: background-size 0.6s cubic-bezier(0.86, 0, 0.07, 1), color 0.6s cubic-bezier(0.86, 0, 0.07, 1);
    background-image: -webkit-gradient( linear, left top, left bottom, from(#FF0000), to(#FF0000) );
    background-image: linear-gradient(#FF0000, #FF0000);
    background-position: 100% 100%;
    background-repeat: no-repeat;
    background-size: 0 1px;
    text-decoration: none;
}

.header__menu li a:hover {
    background-position: 0 100%;
    background-size: 100% 1px;
    color: #FF0000;
    opacity: 1;
}

.header__link-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 95px;
    font-size: 12px;
    color: #fff;
    transition: 0.2s;
    position: relative;
}

.header__link-contact:hover {
    opacity: 1;
    color: #FF0000;
}

.header__link-contact:hover svg {
    fill: #FF0000;
}

.header__link-contact::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0px;
    background-color: #FF0000;
    z-index: -1;
    transition: 0.2s;
}

.header__link-contact:hover::after {
    height: 2px;
}

.header__link-contact svg {
    margin-bottom: 4px;
    transition: 0.2s;
    fill: #fff;
}

.header__search-icon {
   
    position: relative;
}

.header__search-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background-color: #c8c8c8;
}

.header__search-icon .search-button {
    background-color: transparent;
    border: 0px;
    outline: none;
    font-size: 12px;
    cursor: pointer;
    padding: 0px 25px;
}

.header__search-icon .search-button img {
    max-width: 22px;
    margin: 0 auto 6px;
}
 
.hamburger-box,
.search__sp {
    display: none;
}

.hamburger__inner {
    width: 20px;
    line-height: 0px;
}
/* =====end - header===== */


/* =========start - footer========= */
footer {
    position: relative;
				border: 1px solid #edeff2;
}

.main-footer {
    padding: 60px 0px 65px;
    align-items: center;
    justify-content: space-between;
}

.footer__logo {
    margin-bottom: 20px;
}

.footer__logo img {
    max-width: 260px;
}

.footer__company {
    margin-bottom: 15px;
    line-height: 25px;
    font-size: 14px;
}

.footer__company  h5 {
    font-size: 15px;
    margin-bottom: 6px;
}

.footer__menu {
    flex: 1;
    padding-left: 13.5%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.footer__menu ul li {
    font-size: 14px;
    line-height: 28px;
    color: #333333;
    white-space: nowrap;
}

.footer__menu ul li a:hover {
    color: #174f9f;
    opacity: 1;
    text-decoration: underline;
}

.footer__menu ul li:first-child {
    font-size: 15px;
    margin-bottom: 20px;
    font-weight: 500;
}

.footer__menu ul:nth-child(3) li:first-child {
	margin-bottom: 8px;
}

.footer__menu ul:nth-child(3) li {
	margin-bottom: 8px;
}


.footer__menu ul:last-child li {
    font-size: 15px;
    font-weight: 500;
}

.footer__copy-right {
    padding-bottom: 38px;
}

.footer__copy-right p {
    font-size: 12.5px;
    line-height: 28px;
    color: #333333;
}

/* =========end - footer========= */

/* css button back to top */
#back-to-top {
    position: fixed;
    bottom: 0px;
    right: 0px;
    width: 90px;
    height: 90px;
    background-color: #FF0000;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background-color .3s, 
    opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    color: #fff;
    font-size: 14px;
    
}

#back-to-top img {
    margin-bottom: 5px;
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
  }

#back-to-top:hover {
    opacity: 0.7;
}
/* css button back to top */

/* link fixed right */
.link__fixed-right {
    position: fixed;
    width: auto;
    top: 110px;
    right: 38px;
    display: flex;
/*				transform: rotate(90deg);*/
				-ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
    font-weight: 500;
    font-size: 14px;
    color: #172666;
    letter-spacing: 4px;
    z-index: 10;
}

.link__fixed-right a {
    font-weight: 400;
				padding: 6px 0;
}
/* link fixed right */


/* ======class common====== */
section.section {
    padding: 100px 0;
}

.wrap-box__link {
    align-items: stretch;
}

.wrap-box__link li a {
    background-color: #fff;
    font-size: 17px;
    color: #000;
    margin: 0px 17.5px;
    height: 100%;
    padding: 23px 20px;
    min-width: 310px;
    position: relative;
    justify-content: center;
}

.wrap-box__link li a:hover {
    opacity: 1;
}

.wrap-box__link li a:hover::after {
    right: 10px
}

.wrap-box__link li a::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 10px;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(../image/angle-right-icon.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: 0.2s;
}

.wrap-box__link li a img {
    max-width: 40px;
    margin-right: 15px;
}

.section__title {
    font-size: 50px;
    letter-spacing: 6px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.section__title span {
    font-size: 17px;
    letter-spacing: normal;
    padding-left: 10px;
    padding-top: 4px;
}

.section__title p {
    width: 100%;
    font-size: 17px;
    margin-top: 10px;
    text-align: center;
    letter-spacing: normal;
}


/* section contact-inc */
.contact-inc {
    padding: 85px 0px;
    background-color: #edeff2;
}

.contact-inc .section__title p {
    text-align: left;
}

.contact-flex {
    align-items: flex-start;
}

.contact-inc__title .section__title {
    display: block;
}

.contact-inc__content {
    flex: 1;
    padding-left: 9.5%;
}

.contact-inc__content > p {
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 38px;
}

.contact-inc__info {
    align-items: flex-start;
    justify-content: space-between;
}

.contact__info {
    margin-right: 35px;
}

.contact__info p:first-child {
    font-size: 15px;
}

.contact__info a {
    display: inline-block;
    margin-top: 14px;
    text-transform: uppercase;
    font-size: 36px;
}

.contact__info a  span {
    font-size: 16px;
    padding-right: 6px;
}

.contact__info p:last-child {
    font-size: 14px;
    margin-top: 10px;
}

.contact__link {
    flex: 1;
}

.contact__link p {
    font-size: 15px;
    margin-bottom: 20px;
}

.wrap-contact__link {
    gap : 1em;
    max-width: 450px;
}

.btn {
    display: block;
    font-size: 15px;
    color: #fff;
    background-color: #F00;
    text-align: center;
    padding: 19.5px 20px;
    min-width: 200px;
    position: relative;
}

.btn:hover {
    opacity: 1;
    opacity: 0.8;
}

.btn:hover::after {
    right: 10px;
}

.btn::after {
    position: absolute;
    content: "";
    background-image: url(../image/angle-right-white-icon.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 10px;
    height: 10px;

    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    transition: 0.2s;
}
/* end - section contact-inc */

section.eye-catch-page {
    margin: 0px 90px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: 0.2s;
}

.eye-catch-page .section__title {
    color: #fff;
    transition: 0.2s;
    padding: 152px 0px;
}

.breadcrumb {
    margin-top: 30px;
}

.breadcrumb ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb ul li {
    font-size: 14px;
    margin-right: 8px;
    color: #959595;
}

.breadcrumb ul li a {
    color: #000000;
}

.breadcrumb ul li a:hover {
    color: #174f9f;
}

.wrap-content__page {
    margin-top: 65px;
    margin-bottom: 100px;
}

.wrap-content__inner {
    margin-top: 35px;
}

.wrap-content__page h2 {
    font-size: 40px;
    letter-spacing: 0.15em;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    text-align: center;
				margin-bottom: 60px;
}

.wrap-content__page h2 > span {
	display: block;
    width: 100%;
    font-size: 17px;
    margin-top: 0;
    text-align: center;
    letter-spacing: normal;
    font-weight: 400;
    font-family: 'Noto Sans JP', sans-serif;
}
/* ======end class common====== */


.mobile-hambuger__close,
.mobile-logo {
    display: none;
}

.iziModal {
    position: fixed;
    top:0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);

    z-index: 9999; 
    display: none;
}

.iziModal .modal__inner {
    background-color: #fff;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 0 8px rgb(0 0 0 / 30%);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.iziModal .modal__inner .form-group {
    width: 100%;
    justify-content: space-between;
    gap: 20px;
}

.modal__inner .form-group input {
    width: 400px;
    font-size: 16px;
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
}

.form-group input:focus {
    box-shadow: 0px 0px 3px rgb(0 0 0 / 30%);
}

.form-group .btn {
    cursor: pointer;
    border: 0;
    min-width: 120px;
    padding: 13.5px 20px;
    border-radius: 4px;
}
/* ===========start Responsive for common CSS=========== */
@media only  screen and (max-width: 1200px) {
    section.eye-catch-page {
        margin: 0px;
    }
    .eye-catch-page .section__title {
        padding: 140px 0px;
    }
    .wrap-content__page .container-small {
        max-width: 960px;
    }
}

@media only screen and (max-width: 1024px) {
    .link__fixed-right,
    .scroll-down {
        display: none;
    }
    body.hidden {
        overflow: hidden;
        width: 100%;
        height: 100%;
    }
    .hamburger-box {
        display: block;
        padding: 20px;
        cursor: pointer;
        z-index: 2;
        position: relative;
    }
    .hamburger-box .hamburger__inner span,
    .mobile-hambuger__close .hamburger__inner span {
        display: inline-block;
        position: relative;
        width: 20px;
        height: 2px;
        vertical-align: top;
        background: #000000;
    }
    .mobile-hambuger__close .hamburger__inner span {
        background-color: #fff;
    }
    .hamburger-box .hamburger__inner span + span,
    .mobile-hambuger__close .hamburger__inner span + span {
        margin-top: 5px;
    }
    .hamburger-box.show .hamburger__inner span:nth-child(1) {
        animation: ease .7s .4s burger_top-2-45 backwards;
    }
    .hamburger-box.show .hamburger__inner span:nth-child(2) {
        animation: ease .7s .4s burger_scaled-2 backwards;
    }
    .hamburger-box.show .hamburger__inner span:nth-child(3) {
        animation: ease .7s .4s burger_bottom-2-135 backwards;
    }
    @keyframes burger_bottom-2-135 {
        0% {
        bottom: 7px;
        transform: rotate(135deg); }
        50% {
        bottom: 7px;
        transform: rotate(0); }
        100% {
        bottom: 0;
        transform: rotate(0); } 
    }
    @keyframes burger_scaled-2 {
        0% {
        transform: scale(0); }
        50% {
        transform: scale(0); }
        100% {
        transform: scale(1); } 
    }
    @keyframes burger_top-2-45 {
        0% {
        top: 7px;
        transform: rotate(45deg); }
        50% {
        top: 7px;
        transform: rotate(0); }
        100% {
        top: 0;
        transform: rotate(0); } 
    }
    .header__inner {
        position: relative;
        height: 70px;
    }
    .header__search-icon {
        display: none;
    }
    .header__logo {
        padding-left: 0px;
    }
    .header__search-icon.search__sp {
        display: block;
    }
    .header__search-icon .search-button {
        padding: 0px 20px;
    }
    .header__search-icon::before {
        content: none;
    }
    .header__right {
        position: fixed;
        height: 100%;
        z-index: 999;
        top: 0;
        left: 0;
        width: 400px;
        background-color: #fff;
        box-shadow: 2px 0px 8px rgb(0, 0, 0, 25%);
        flex-direction: column;
        padding: 30px;
        justify-content: flex-start;
        align-items: flex-start;

        transform: translateX(-104%);
        transition: transform 0.45s ease-in-out;
        user-select: none;
    }
    .header__right.show {
        transform: translateX(0%);
    }
    .header__nav {
        width: 100%;
    }
    .mobile-hambuger__close {
        position: absolute;
        background-color: #F00;
        position: absolute;
        top: 15px;
        right: -45px;
        display: block;
        padding: 12px 10px;
        border-radius:5px;
        cursor: pointer;
        box-shadow: 0px 0px 3px rgb(0, 0, 0, 15%);
        display: none;
    }
    .mobile-hambuger__close.show {
        display: block;
    }
    .mobile-hambuger__close.show span:nth-child(1) {
        animation: ease .7s .4s burger_top-1-45 forwards;
    }
    .mobile-hambuger__close.show span:nth-child(2) {
        animation: ease .7s .4s burger_scaled-1 forwards;
    }
    .mobile-hambuger__close.show span:nth-child(3) {
        animation: ease .7s .4s burger_bottom-1-135 forwards;
    }
    @keyframes burger_top-1-45 {
        0% {
        top: 0;
        transform: rotate(0); }
        50% {
        top: 7px;
        transform: rotate(0); }
        100% {
        top: 7px;
        transform: rotate(45deg); } 
    }
    @keyframes burger_scaled-1 {
        50% {
        transform: scale(0); }
        100% {
        transform: scale(0); } 
    }
    @keyframes burger_bottom-1-135 {
        0% {
        bottom: 0;
        transform: rotate(0); }
        50% {
        bottom: 7px;
        transform: rotate(0); }
        100% {
        bottom: 7px;
        transform: rotate(135deg); } 
    }
    .header__menu {
        flex-direction: column;
        align-items: flex-start;
        padding: 0px;
    }
    .header__menu li {
        padding: 0px;
        width: 100%;
    }
    .header__menu li a {
        position: static;
        background-image: none;
        padding: 16px 0px;
    }
    .header__link-contact {
        width: 100%;
        height: 70px;
        margin-top: 20px;
    }
    .mobile-logo {
        display: block;
        margin-bottom: 20px;
    }
    .mobile-logo img {
        max-width: 180px;
    }
    .section__title {
        font-size: 40px;
    }
    .section__title span {
        font-size: 14px;
    }
    .contact-flex {
        flex-wrap: wrap;
    }
    .contact-inc__content {
        padding-left: 0;
        flex: auto;
        width: 100%;
        padding-top: 40px;
    }
    .contact-inc {
        padding: 65px 0px;
    }
    .contact-inc__content > p {
        margin-bottom: 40px;
    }
    .main-footer {
        flex-wrap: wrap;
        padding-bottom: 30px;
    }
    .footer__menu {
        flex: auto;
        width: 100%;
        padding-left: 0px;
        padding-top: 40px;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .footer__menu ul  {
        width: fit-content;
        margin-bottom: 30px;
    }
    .footer__menu ul  {
        margin-right: 45px;
    }
    .footer__menu ul:last-child {
        margin-right: 0px;
    }
    .wrap-content__page .section__title {
        font-size: 36px;
    }
    .wrap-content__page h2 {
        font-size: 36px;
    }
    .wrap-content__page {
        margin-top: 50px;
        margin-bottom: 70px;
    }
}

@media only screen and (max-width: 768px) {
    .header__logo img {
        max-width: 180px;
    }
    .header__search-icon .search-button img {
        max-width: 20px;
    }
    .section__title p,
    .wrap-content__page h2 > p {
        margin-top: 5px;
        font-size: 14px;
    }
    .contact-inc__info {
        flex-wrap: wrap;
    }
    .contact__link {
        width: 100%;
        flex: auto;
    }
    .contact__info {
        margin-right: 0px;
        margin-bottom: 20px;
    }
    .eye-catch-page .section__title {
        padding: 60px 0px;
        font-size: 24px;
        letter-spacing: 0;
    }
    .breadcrumb {
        margin-top: 16px;
    } 
    .breadcrumb ul li {
        font-size: 12px;
    }
    #back-to-top {
        width: 60px;
        height: 60px;
        font-size: 10px;
    }
    #back-to-top img {
        max-width: 10px;
    }
    .iziModal .modal__inner {
        width: 90%;
        padding: 30px 20px;
    }
    .iziModal .modal__inner .form-group {
        flex-wrap: wrap;
        justify-content: center;
    }
			 .footer__copy-right p {
					text-align: left;
				}
}

@media only screen and (max-width: 600px) {
    
}

@media only screen and (max-width: 479px) {
    .header__right {
        width: calc(100% - 80px);
    }
    .section__title {
        width: 100%;
    }
    .wrap-contact__link .btn {
        min-width: unset;
        width: calc(100%/2);
        font-size: 14px;
        padding: 16px;
    }
    .footer__copy-right p {
        font-size: 11px;
    }
    .footer__copy-right {
        padding-bottom: 20px;
    }
    .wrap-content__page .section__title {
        font-size: 28px;
        letter-spacing: 0px;
    } 
    .wrap-content__page h2 {
        font-size: 28px;
        letter-spacing: 0px;
    }
    .section__title {
        font-size: 38px;
    } 
}
/* ===========end Responsive for common CSS=========== */


/*--------------------------------------------------*/
#second {
 max-width: 1040px;
	margin: 0 auto;
	padding: 65px 20px 100px;
	line-height: 1.7;
}

#second h3 {
	font-weight: 500;
	font-size: 24px;
	background-color: #F2F7FD;
	padding: 10px 12px;
	position: relative;
	color: #174f9f;
	margin: 0 0 30px;
	letter-spacing: 0.04em;
}

#second h3:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 40px;
	height: 2px;
	background-color: #174f9f;
	content: "";
}


#second p {
	margin: 0 0 50px;
}

#second p + h2,
#second p + h3 {
	margin-top: 100px;
}

#second ul {
	margin: 0 30px 60px;
	padding: 0;
	list-style: disc;
}

#second ul li {
	margin: 0 0 24px;
	list-style: disc;
	line-height: 1.4;
}

#second ol {
	margin: 0 0 60px;
	padding: 0 0 0 30px;
}

#second ol li {
	margin: 0 0 24px;
	padding: 0 0 0 8px;
	list-style: decimal;
	line-height: 1.4;
}

#second a {
	text-decoration: underline;
	color: #174f9f;
}

#second .pager_wrap {
	position: relative;
	overflow: hidden;
	margin: 20px 0 10px;
}

#second .pager_wrap ul.pager {
	position: relative;
	left: 50%;
	float: left;
}

#second .pager_wrap ul.pager li {
	position: relative;
	left: -50%;
	float: left;
}

#second .pager_wrap ul.pager {
	margin: 0;
	padding: 0;
	list-style: none;
}

#second .pager_wrap ul.pager li {
	display: inline;
	min-width: 20px;
	margin: 2px !important;
	padding: 0;
	background-color: #FFF;
	text-align: center;
	border: 1px solid #174f9f;
	text-indent: 0;
}

#second .pager_wrap ul.pager li a {
	display: block;
	padding: 10px 15px;
	text-decoration: none;
	border: none;
}

#second .pager_wrap ul.pager li::before {
content: "";
margin-right: 0;
}
#second .pager_wrap ul.pager li.active {
	background-color: #174f9f;
	display: block;
	padding: 10px 15px;
	color: #FFFFFF;
}

#second .pager_wrap ul.pager li.active a:link, #second .pager_wrap ul.pager li.active a:visited,
#second .pager_wrap ul.pager li.active a:hover, #second .pager_wrap ul.pager li.active a:active {
	color: #FFFFFF !important;
}

#second .pager_wrap ul.pager li a:hover {
	color: #000;
	background-color: #E1EDFB;
	opacity: 1;
}

#second .cbtn a {
	display: block;
	width: 300px;
	text-align: center;
	margin: 0 auto;
	background-color: #174f9f;
	color: #FFF;
	text-decoration: none;
	line-height: 60px;
	position: relative;
}

#second .cbtn a:hover::after {
    right: 10px;
}

#second .cbtn a::after {
    position: absolute;
    content: "";
    background-image: url(../image/angle-right-white-icon.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 10px;
    height: 10px;

    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    transition: 0.2s;
}

#second .cbtn2 a {
	display: block;
	width: 300px;
	text-align: center;
	margin: 0 auto;
	background-color: #FF0000;
	color: #FFF;
	text-decoration: none;
	line-height: 60px;
	position: relative;
}

#second .cbtn2 a:hover::after {
    right: 10px;
}

#second .cbtn2 a::after {
    position: absolute;
    content: "";
    background-image: url(../image/angle-right-white-icon.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 10px;
    height: 10px;

    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    transition: 0.2s;
}

#second .tobira {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

#second .tobira li {
	margin: 0 0 40px;
	padding: 0;
	list-style: none;
	width: 46%;
	position: relative;
}

#second .tobira li a {
	color: #000;
	text-decoration: none;
	opacity: 1;
}

#second .tobira li img {
	width: 100%;
	height: auto;
}

#second .tobira li a:hover img {
	opacity: 0.7;
}

#second .tobira li dl {
	margin: -40px 40px 0 0;
	background-color: #FFF;
	padding: 20px 40px;
	position: relative;
	z-index: 2;
	box-shadow: 3px 3px 3px #EEE;
}

#second .tobira li dl dt {
	margin: 0 0 12px;
	font-size: 22px;
	font-weight: 500;
	letter-spacing: 0.02em;
	position: relative;
}

#second .tobira li dl dt:before {
	position: absolute;
	top: 16px;
	left: -30px;
	content: "";
	background-color: #099;
	width: 20px;
	height: 1px;
}

#second .tobira li dl dd {
	line-height: 1.4;
	display: flex;
}

#second img {
	display: inline;
}

#second ul + h3 {
	margin-top: 80px;
}

#second .wWrap {
	position: relative;
}

#second .wWrap .inner {
 margin: 0 calc(50% - 50vw) 30px;
 width: 100vw;
	background-color: #F2F7FD;
	padding: 60px 0;
}

#second .wWrap .innerD {
 margin: 0 calc(50% - 50vw) 30px;
 width: 100vw;
	padding: 60px 0 0;
}

#second .wWrap .innerD ul {
	margin: 0;
	list-style: none;
}

#second .wWrap .innerD ul li {
	margin: 0;
	list-style: none;
}

#second .wWrap .innerD ul li a {
	text-decoration: none;
	color: #000;
}


#second .sectionLine {
	position: relative;
	width: 100vw;
 margin: 0 calc(50% - 50vw) 30px;
	margin-top: 80px;
	padding-top: 40px;
}

#second .sectionLine:after {
 position: absolute;
 content: "";
 width: 100%;
 height: 1px;
 left: 0%;
 background-color: #bfbfbf;
 top: 0;
}

.contactBox {
	background-color: #FFF2F2;
	margin: 60px 0 0;
	padding: 30px;
}

.contactBox p {
	margin: 0 0 20px;
    font-size: 30px;
    letter-spacing: 0.15em;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    text-align: center;
}

.contactBox .cont2 {
	display: flex;
	justify-content: space-between;
	margin: 0 40px;
}

.contactBox .cont2 div {
	width: 48%;
	text-align: center;
}

.contactBox .cont2 div dt {
	margin: 0 0 10px;
	padding: 0 0 10px;
	font-weight: 500;
	font-size: 18px;
	border-bottom: 1px solid #CCC;
	/*background-color: #174f9f;
	color: #FFF;
	padding: 8px 12px;*/
}

.contactBox .cont2 div dd {
	font-size: 24px;
	letter-spacing: 0.02em;
}

.contactBox .cont2 div dd span {
	font-family:'Oswald', sans-serif;
	font-size: 30px;
}

.contactBox .cont2 div dd span.lead {
	font-size: 16px;
	padding-right: 8px;
}

.contactBox .cont2 div dd a {
	display: block;
	margin: 40px 20px 0;
	background-color: #FF0000;
	color: #FFF !important;
	height: 60px;
	line-height: 60px;
	font-size: 16px;
	position: relative;
	text-decoration: none !important;
}

.contactBox .cont2 div dd a::after {
    position: absolute;
    content: "";
    background-image: url(../image/angle-right-white-icon.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 10px;
    height: 10px;

    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    transition: 0.2s;
}

.contactBox .cont2 div dd a:hover::after {
    right: 10px;
}

.contactBox2 {
	background-color: #F2F7FD;
	margin: 60px 0 0;
	padding: 30px;
	text-align: center;
}

.contactBox2 .title {
	font-size: 30px;
	font-weight: 500;
	margin: 0 0 30px !important;
	letter-spacing: 0.1em;
}

.contactBox2 .info {
	font-size: 20px;
	margin: 0 0 20px !important;
}

.contactBox2 .cont2 {
	display: flex;
	width: 70%;
	margin: 0 auto;
	justify-content: space-between;
}

.contactBox2 .cont2 div {
	width: 46%;
}

.contactBox2 .cont2 div dt {
	margin: 0 0 10px;
	padding: 0 0 10px;
	font-weight: 500;
	font-size: 18px;
	border-bottom: 1px solid #CCC;
	font-family:'Oswald', sans-serif;
}

.contactBox2 .cont2 div dd {
	font-family:'Oswald', sans-serif;
	font-size: 30px;
}

.contactBox3 {
	background-color: #FFF2F2;
	margin: 60px 0;
	padding: 30px;
	text-align: center;
}

.contactBox3 .title {
	font-size: 30px;
	font-weight: 500;
	margin: 0 0 30px !important;
	letter-spacing: 0.1em;
}

.contactBox3 .info {
	font-size: 20px;
	margin: 0 0 20px !important;
}

.contactBox3 .cont3 {
	display: flex;
	width: 90%;
	margin: 0 auto;
	justify-content: space-between;
}

.contactBox3 .cont3 div {
	width: 46%;
}

.contactBox3 .cont3 div dt {
	margin: 0 0 10px;
	padding: 0 0 10px;
	font-weight: 500;
	font-size: 18px;
	border-bottom: 1px solid #CCC;
}

.contactBox3 .cont3 div dd {
 font-size: 24px;
	letter-spacing: 0.02em;
}

.contactBox3 p {
	margin: 0 0 20px !important;
    font-size: 30px;
    letter-spacing: 0.15em;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    text-align: center;
}

.contactBox3 .cont3 div dd span {
	font-family:'Oswald', sans-serif;
	font-size: 30px;
}

.contactBox3 .cont3 div dd span.lead {
	font-size: 16px;
	padding-right: 8px;
	margin-left: 20px;
}

.contactBox3 .cont3 div dd a {
	display: block;
	margin: 40px 20px 0;
	background-color: #FF0000;
	color: #FFF !important;
	height: 60px;
	line-height: 60px;
	font-size: 16px;
	position: relative;
	text-decoration: none !important;
}

.contactBox3 .cont3 div dd a::after {
    position: absolute;
    content: "";
    background-image: url(../image/angle-right-white-icon.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 10px;
    height: 10px;

    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    transition: 0.2s;
}

.contactBox3 .cont3 div dd a:hover::after {
    right: 10px;
}

.contactBox3 p.lead {
 font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	line-height: 1.4;
	font-weight: 400;
}

.subMenu {
	position: relative;
	margin: 0 0 60px;
	padding: 0 0 40px !important;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.subMenu:after {
	position: absolute;
	width: 100vw;
	height: 1px;
	bottom: 0;
	background-color: #CCC;
	content: "";
}

.subMenu li {
	width: 30%;
	margin: 0 1.5% 20px !important;
	padding: 0;
	position: relative;
	list-style: none !important;
}

.subMenu li a {
	display: block;
	border: 3px solid #EEE;
	padding: 8px 0;
	text-align: center;
	text-decoration: none !important;
	color: #000 !important;
}

.subMenu li a:before {
	position: absolute;
	top: 0;
	left: 0;
	background-color: #FFC6C6;
	width: 24px;
	height: 3px;
	content: "";
}

.subMenu li a:hover {
	background-color: #FFF2F2;
	opacity: 1;
}

@media only screen and (max-width: 768px) {
#second {
 width: 94%;
 margin: 0 auto;
 max-width: none;
 padding: 40px 0;
}

.subMenu {
	position: relative;
	margin: 0 0 60px !important;
	padding: 0 0 40px !important;
	list-style: none;
	display: block;
}

.subMenu li {
	width: 98%;
	margin: 0 1% 20px !important;
	padding: 0;
	position: relative;
	list-style: none !important;
}

#second .tobira {
	margin: 0;
	padding: 0;
	list-style: none;
	display: block;
}

#second .tobira li {
	margin: 0 0 40px;
	padding: 0;
	list-style: none;
	width: 100%;
	position: relative;
}

#second .tobira li dl {
	margin: -40px 20px 0 0;
}

#second .tobira li dl dt {
	margin: 0;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.02em;
	position: relative;
}

#second .tobira li dl dt:before {
    top: 12px;
}

}

@media only screen and (max-width: 768px) {

#second .cbtn a {
	width: 100%;
}

.contactBox3 p.lead {
text-align: left;
}

.contactBox3 .cont3 {
display: block;
}

.contactBox3 .cont3 div {
width: 100%;
}

.contactBox3 .cont3 div:nth-of-type(2) {
margin-top: 30px;
}

.contactBox3 .cont3 div dd span.lead {
margin-left: 0;
padding-right: 0;
}

.wrap-content__page h2 {
font-size: 22px;
}

.alignright {
float: none;
display: block !important;
margin: 0 auto 20px;
}

#second h3 {
font-size: 20px;
}

.contactBox2 .info {
font-size: 18px;
}

.contactBox2 .cont2 {
display: block;
width: 100%;
}

.contactBox2 .cont2 div {
width: 100%;
}

.contactBox2 .cont2 div:nth-of-type(2) {
margin-top: 30px;
}

.contactBox .cont2 {
display: block;
width: 100%;
margin: 0;
}

.contactBox .cont2 div {
width: 100%;
}

.contactBox .cont2 div:nth-of-type(2) {
margin-top: 30px;
}

.contactBox .cont2 div dd a {
margin-top: 20px;
}

.btn::after {
right: 10px;
}

.modal__inner .form-group input {
width: 100%;
}

}



