@charset "utf-8";

/*
 * style.css
 *
 *  version --- 1.0
 *  updated --- 2017/11/30
 */

/* !HTML5 elements
---------------------------------------------------------- */
header, 
footer, 
nav, 
section, 
aside, 
article {
    display: block;
}

/* !Reseting
---------------------------------------------------------- */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

fieldset {
  border: none;
}

ul,
ol,
li {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}

table {
    border-collapse: collapse;
}

button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
}

select::-ms-expand {
    display: none;
}

input[type=radio]::-ms-check,
input[type=checkbox]::-ms-check{
    display: none;
}

select,
input[type=radio],
input[type=checkbox],
input[type=text],
input[type=password],
input[type=email],
input[type=tel],
input[type=number],
input[type=reset],
input[type=button],
input[type=submit],
textarea {
    appearance: none;
    border-radius: 0;
    font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

input[type=text]::-ms-clear,
input[type=tel]::-ms-clear,
input[type=number]::-ms-clear{
    display: none;
}

input[type=reset],
input[type=button],
input[type=submit]  {
    font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    cursor: pointer;
}

*,
*:before,
*::after {
    box-sizing: border-box;
}
/* !Clearfix
---------------------------------------------------------- */
.clearfix {
    display: block;
    min-height: 1%;
}

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

* html .clearfix {
    height: 1%;
}

/* !Layout
---------------------------------------------------------- */
html {
    overflow-y: scroll;
    font-size: 62.5%;
}

/*** タブレット 768x ~ 1366px***/
@media screen and (min-width: 768px) and (max-width: 1366px) {
    html {
        font-size: calc(100vw / 136.6);
    }
}

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
    html {
        font-size: 62.5%;
    }
}

body {
    font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: 1.6rem;
    -webkit-text-size-adjust: none;
    line-height: 1.5;
    font-weight: 500;
    color: #000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* !Base Fonts -------------------------------------------------------------- */
a {
    color: #000;
    text-decoration: none;
}

/*** hover ***/
@media screen and (min-width: 960px) {
    a {
        transition: all 0.5s;
    }

    a:hover {
        text-decoration: underline;
    }

    .op {
        transition: opacity 0.5s ease-out;
    }

    .op:hover {
        opacity: .7;
        text-decoration: none;
    }

    a[href^="tel:"] {
        cursor: default;
        pointer-events:none;
    }
}

.is-hide {
    display: none;
}

.no-click {
    pointer-events: none;
    opacity: .5;
}

/* !wrapper
---------------------------------------------------------- */
#wrapper {
    width: 100%;
    padding-top: 10rem;
    overflow: hidden;
    position: relative;
}

.inner {
    max-width: 110rem;
    padding: 0 2rem;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.anchor_wrap {
  position: relative;
}
.anchor_wrap .anchor {
  position: absolute;
  z-index: -1;
  top: -10rem;
}
/* !header
---------------------------------------------------------- */
#header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    padding: 0 4rem 0 3rem;
    background: #fff;
    box-shadow: 0 .3rem .6rem rgba(0,0,0,.16);
}
.header-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo a{
    font-size: 1px;
    line-height: 1;
    display: flex;
    align-items: center;
    grid-gap: .7rem;
}

.header-logo img {
    width: 20.3rem;
}
.header-logo span{
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: .08em;
}
.header-right{
    padding-top: 2.2rem;
}

#g-navi{
    padding-right: 7.8rem;
    grid-gap: 1rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.nav-search{
    position: absolute;
    right: 4rem;
    top: 50%;
    transform: translateY(-50%);
}
.nav-search span{
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    color: #D94473;
    padding-top: 3.1rem;
    background: url(../img/common/icon_search.svg)no-repeat top center;
    background-size: 2.9rem auto;
}

.nav_list{
    display: flex;
    align-items: center;
    grid-gap: 2.4rem;
}
.nav_list a{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.7rem;
    font-weight: bold;
    letter-spacing: .08em;
    padding-bottom: 2.2rem;
}
.nav_list a.parentA{
    padding-right: 1.8rem;
    background: url(../img/common/sub_close.svg)no-repeat right top .7rem;
    background-size: 1.1rem auto;
}
@media screen and (min-width: 960px) {
    .nav_list02 a:hover,
    .nav_list a:hover{
        color: #D94473;
        opacity: 1;
    }
    .nav_list a.parentA:hover,
    .parentLi:hover a.parentA{
        color: #D94473;
    }
}
.parentLi{
    position: relative;
}

@media screen and (min-width: 751px) {
    .subBox{
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        padding: 1rem 0;
        transition: opacity .3s;
        white-space: nowrap;
        pointer-events: none;
        opacity: 0;
        background: #fff;
    }
}
@media screen and (min-width: 960px) {
    .parentLi:hover .subBox{
        opacity: 1;
        pointer-events: auto;
    }
}
.subLi+.subLi{
}
.subLi a{
    font-size: 1.4rem;
    padding: 1rem 2rem;
}

.nav_list02{
    display: flex;
    align-items: center;
    grid-gap: 1rem;
}
.nav_list02 a{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: .08em;
}
.nav_list02 img{
    width: 2rem;
}

.fixed_area {
    position: fixed;
    z-index: 88;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4.6rem;
}
.fixed_area ul{
    display: grid;
    grid-gap: 2rem;
}

.fixed_area a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 17.7rem;
    border-radius: .5rem 0 0 .5rem;
    border: .2rem solid currentColor;
    border-right: 0;
    writing-mode: tb-rl;
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: .06em;
    color: #D94473;
    background-image: linear-gradient(to right, #FFFFFF, #FFFFFF , #FFF4F7);
}
.fixed_area li+li a{
    color: #3399FF;
    background-image: linear-gradient(to right, #FFFFFF, #FFFFFF , #CFEEF7);
} 


/* !main Visual
---------------------------------------------------------- */
#main-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to right, #F7E0E8 , #E0EFFF);
}
.mv_hd{
    width: 62.5rem;
    margin-top: -6.7rem;
    margin-right: -8.5rem;
}
.mv_img{
    width: 69rem;
}

/* !teaser
---------------------------------------------------------- */
#teaser {
    background-image: linear-gradient(to right, #F7E0E8 , #E0EFFF);
    padding: 8.4rem 0 6.5rem;
    position: relative;
}
.teaser_hd{
}
.teaser_hd_eng{
    font-size: 2rem;
    font-weight: bold;
    color: #3399FF;
    letter-spacing: .08em;
}
.teaser_hd_jap{
    font-size: 4.5rem;
    font-weight: bold;
    color: #D94473;
    letter-spacing: .08em;
}
.teaser_text{
    font-size: 1.4rem;
    line-height: 1.93;
    font-weight: 500;
    letter-spacing: .08em;
}
/* !breadcrumb
---------------------------------------------------------- */
#breadcrumb {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    padding: 2.2rem 3.5rem;
    font-size: 1.2rem;
  text-align: left;
}

#breadcrumb ul {
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
  font-weight: bold;
}

#breadcrumb ul li {
  word-break: keep-all;
  white-space: nowrap;
  font-size: 1.2rem;
  line-height: 1.5;
  position: relative;
  color: #D94473;
}

#breadcrumb ul li + li:before {
  content: '/';
  z-index: 2;
  width: 1.5em;
  text-align: center;
  display: inline-block;
  text-indent: 0;
}

#breadcrumb ul li + li {
  padding-left: 1.5em;
  text-indent: -1.5em;
}

#breadcrumb ul li:last-child {
  word-break: break-all;
  white-space: unset;
}

#breadcrumb ul li a{
  text-indent: 0;
  color: #D94473;
}

/* !footer
---------------------------------------------------------- */
footer{
    position: relative;
    z-index: 11;
}
.company_area{
    position: relative;
}
.company_area:before{
    content: '';
    z-index: -1;
    position: absolute;
    right: 3.8rem;
    top: -17.3rem;
    width: 15.1rem;
    height: 26.8rem;
    background: url(../img/common/img_dog.png)no-repeat center top;
    background-size: 100% auto;
}

.error404 .company_area:before {
    background-image: url(../img/common/img_bad_dog.png);
}

.company_inner {
    position: relative;
    display: flex;
    align-items: center;
    height: 9.5rem;
    background: #fff;
    border-top: 1px solid #B1B1B1;
    border-bottom: 1px solid #B1B1B1;
}
.company_title{
    position: absolute;
    z-index: 11;
    left: 0;
    top: 0;
    width: 25rem;
    height: 100%;
    background: #D94473;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: .08em;
}


.js-image-scroll {
    display: flex;
}
.js-image-scroll ul {
    display: flex;
}
.js-image-scroll ul:nth-child(odd) {
    animation-name: image-loop-left1;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
.js-image-scroll ul:nth-child(even) {
    animation-name: image-loop-left2;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.js-image-scroll.is-vertical,
.js-image-scroll.is-vertical ul {
    flex-direction: row;
}

.js-image-scroll.is-vertical ul:nth-child(odd) {
  animation-name: image-loop-left1;
}

.js-image-scroll.is-vertical ul:nth-child(even) {
  animation-name: image-loop-left2;
}

@keyframes image-loop-left1 {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
@keyframes image-loop-left2 {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-200%);
    }
}
@keyframes image-loop-up1 {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(-100%);
    }
}
@keyframes image-loop-up2 {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-200%);
    }
}

.company_slider{
  overflow: hidden;
  pointer-events: none;
}
.company_slider ul li {
  width: 22.8rem;
  margin-right: 2.8rem;
  font-size: 1px;
  line-height: 1;
}
.company_slider .img_box {
  width: 100%;
  padding-top: 33.33%;
}
.company_slider:nth-child(even),
.company_slider:nth-child(even) ul {
  align-items: flex-end;
  top: auto;
  bottom: 5rem;
}
.company_slider a{
    display: block;
    pointer-events: auto;
}
.modal__body.is_blue{
    border-color: #3399FF;
    background: linear-gradient(to bottom, #fff , #CFEEF7);
}
.modal__body.is_blue .modal__closeButton{
  background: url(../img/common/icon_close_blue.svg)no-repeat left center;
  background-size: 100% auto;
}
.modal__body.is_blue .modal_top_title{
    align-items: flex-end;
}
.modal__body.is_blue .modal_top_title span{
    background: #3399FF;
    font-size: 3.3rem;
    height: 7.1rem;
    padding: 0 3.8rem;
    border-radius: 3.6rem;
}
.modal_company_btn{
    text-align: center;
    margin: 5.5rem 0 5rem;
}
.modal__body.is_blue .modal_top_tag{
    justify-content: flex-end;
}
.modal__body.is_blue .faq_list dl dt{
    background: #B5DAFF;
}
.modal__body.is_blue .faq_list dl dt:before{
    background: url(../img/common/faq_q_blue.svg)no-repeat center center;
    background-size: 100% auto;
}
.modal__body.is_blue .faq_list dl dd:before{
    background: url(../img/common/faq_a_blue.svg)no-repeat center center;
    background-size: 100% auto;
}
.modal__body.is_blue .modal_contact a{
    background: #3399FF;
}
.modal__body.is_blue .modal_close a{
    color: #3399FF;
}

.footer_contact{
    background-image: linear-gradient(to right, #F7E0E8 , #E0EFFF);
    padding: 7rem 0 8.4rem;
}
.footer_contact .inner{
    max-width: 80rem;
}
.footer_contact_list{
    display: flex;
    justify-content: space-between;
    grid-gap: 1.5rem;
    margin-top: 4rem;
}
.footer_contact_list li{
    width: 17.8rem;
}
.footer_contact_list li:first-of-type{
    width: 36.8rem;
}
.footer_contact_list a{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    height: 14rem;
    line-height: 1.3;
    border-radius: 1rem;
    background-image: linear-gradient(to bottom, #fff , #fff ,#F2F2F2);
    color: #4B4B4B;
    position: relative;
    text-decoration: none;
    box-shadow: 0 0 1rem rgba(0,0,0,.16);
}
.footer_contact_list li:first-of-type a{
    align-items: flex-start;
    text-align: left;
    padding: 0 2.5rem;
    color: #3399FF;
}
.footer_contact_list .small_text{
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: .06em;
}
.footer_contact_list .big_text{
    font-size: 3.1rem;
    font-weight: bold;
    letter-spacing: .08em;
}
.footer_contact_list .big_text span{
    font-size: 2rem;
    display: block;
}
.footer_contact_list .img{
    position: absolute;
    right: .9rem;
    bottom: 0;
    z-index: 1;
    width: 12.8rem;
}

#footer {
    background: #D94473;
    color: #fff;
    padding: 4.8rem 0 1.8rem;
}
#footer a{
    color: #fff;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    max-width: 104rem;
}
.footer_logo{
    width: 17.9rem;
}
.footer_right{
    padding-top: 2.2rem;
    width: calc(100% - 22rem);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    grid-gap: 2rem;
}
.footer_list01{
    display: flex;
    justify-content: flex-end;
    grid-gap: 4.2rem;
    font-size: 1.4rem;
    letter-spacing: .08em;
    font-weight: bold;
}
.footer_list02{
    display: flex;
    justify-content: flex-end;
    grid-gap: 2.2rem;
    font-size: 1.2rem;
    letter-spacing: .08em;
    font-weight: 500;
}
.footer_sns{
    display: flex;
    justify-content: flex-end;
    grid-gap: 1.5rem;
}
.footer_sns li{
    width: 24.7rem;
}
.footer_list03{
    margin-top: 2.5rem;
    display: flex;
    justify-content: flex-end;
    grid-gap: 3.2rem;
    font-size: 1.1rem;
    letter-spacing: .08em;
    font-weight: 500;
}

#copyright {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: .08em;
}

/*common*/
@media screen and (min-width: 960px) {
    .link_underline02 a{
        text-decoration: none;
    }
    .link_underline02 span,
    .link_underline a{
        position: relative;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
    }
    .link_underline02 a:hover span,
    .link_underline a:hover{
        text-decoration: none;
    }
    .link_underline02 span:after,
    .link_underline a:after {
        content: "";
        display: block;
        width: 0;
        height: 1px;
        position: absolute;
        right: 0;
        bottom: 0;
        pointer-events: none;
        background: currentColor;
        -webkit-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
    }
    .link_underline02 a:hover span:after,
    .link_underline a:hover:after {
        width: 100%;
        right: auto;
        left: 0;
    }
}

.btn_target{
    padding-right: 1.3rem;
    background: url(../img/common/icon_target.svg)no-repeat right center;
    background-size: 1.1rem auto;
}

.btn_link01{
    display: inline-flex;
    align-items: center;
    padding: 1.3rem 4.3rem 1.3rem 2.8rem;
    font-size: 1.7rem;
    font-weight: bold;
    letter-spacing: .08em;
    color: #3399FF;
    background-image: linear-gradient(to bottom, #fff , #fff ,#CFEEF7);
    position: relative;
    border-radius: 3rem;
    border: 1px solid currentColor;
}
.btn_link01:before{
    content: '';
    position: absolute;
    right: 1.4rem;
    top: 0;
    width: 1.4rem;
    height: 100%;
    background: url(../img/common/arrow_btn01.svg)no-repeat center center;
    background-size: 100% auto;
}
.btn_link01.is_pink{
    font-size: 1.3rem;
    padding: 1rem 4.5rem 1rem 2.2rem;
    font-size: 1.3rem;
    color: #D94473;
    background-image: linear-gradient(to bottom, #fff , #fff ,#FFF4F7);
}
.btn_link01.is_pink:before{
    background: url(../img/common/arrow_btn01_pink.svg)no-repeat center center;
    background-size: 100% auto;
}

/*top*/
.top_pickup{
    margin-top: -8.7rem;
}
.top_new_hd{
    font-size: 1.7rem;
    font-weight: bold;
    letter-spacing: .08em;
    color: #D94473;
    margin-left: 2rem;
}
.top_new_hd span{
    font-size: 3.1rem;
    letter-spacing: .08em;
    padding-left: 3.2rem;
    background: url(../img/top/icon_hand.svg)no-repeat left top 60%;
    background-size: 2.6rem auto;
}

.news_slick{
    margin-bottom: 4rem!important;
}
.slick_flex{
    margin: 0 -.6rem;
    padding: 1rem 0!important;
}
.news_slick .slick-list{
    margin: 0 -.6rem;
    padding: 1rem 1rem!important;
}
.news_slick_item{
    width: 34.5rem;
    max-width: 34.5rem;
    margin: 0 .6rem;
}
.news_link{
    display: block;
    border-radius: 1rem;
    box-shadow: 0 0 .6rem rgba(0,0,0,.16);
    background: #fff;
    padding: 2rem 2rem 1rem;
    text-decoration: none!important;
}
.img_box {
    position: relative;
    width: 100%;
    padding-top: 66%;
    overflow: hidden;
}
.img_box img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    object-fit: cover;
    transition: transform .4s ease;
}
@media screen and (min-width: 960px) {
    a:hover .img_box img{
        transform: scale(1.05);
    }
}
.news_link .img_box{
    padding-top: 72.8%;
    border-radius: .5rem;
    margin-bottom: 1.2rem;
}
.categ_span{
    display: flex;
    flex-wrap: wrap;
    grid-gap: .6rem;
}
.categ_span span{
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: .08em;
    padding: 0 1.6rem;
    border-radius: 2rem;
    height: 3.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    color: #3399FF;
    border: 1px solid currentColor;
}
.news_link .title{
    font-size: 1.4rem;
    line-height: 1.71;
    font-weight: bold;
    letter-spacing: .08em;
    margin: .6rem 0;
    
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.tag_span{
    display: flex;
    flex-wrap: wrap;
    grid-gap: .5rem 1rem;
}
.tag_span span{
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: .08em;
    color: #6E6E6E;
}
.news_link .date{
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: .08em;
    color: #6E6E6E;
    margin-top: 2.5rem;
}


.top_new{
    padding-top: 1.6rem;
}

.search_area{
    margin-top: 11.7rem;
}
.search_box{
    max-width: 71.2rem;
    margin: 0 auto;
    border-radius: 1rem;
    background-image: linear-gradient(to right, #fff , #F2F2F2);
    padding: 11rem 2rem 3.2rem;
    box-shadow: 0 0 1rem rgba(0,0,0,.16);
    position: relative;
}
.search_box_hd{
    position: absolute;
    left: 0;
    top: -3.3rem;
    z-index: 2;
    width: 43rem;
}
.search_box_img{
    position: absolute;
    z-index: 1;
    right: 4.3rem;
    top: -7.4rem;
    width: 23.9rem;
}
.search_row{
    display: flex;
    justify-content: center;
    grid-gap: 1.2rem;
}
.search_item input[type=text],
.search_item select{
    width: 14.8rem;
    height: 4.3rem;
    border: .2rem solid #D3D3D3;
    border-radius: .5rem;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 0 1.1rem;
    background-color: transparent;
    color: #B1B1B1;
}
.search_item input[type=text]::-webkit-input-placeholder{ /*WebKit browsers*/
  color: #B1B1B1;
}
.search_item input[type=text]::-moz-input-placeholder{ /*Mozilla Firefox*/
  color: #B1B1B1;
}
.search_item input[type=text]::-ms-input-placeholder{ /*Internet Explorer*/ 
  color: #B1B1B1;
}
.search_item select{
    padding-right: 3rem;
    background: url(../img/top/select.svg)no-repeat right .8rem center;
    background-size: 1.3rem auto;
}
.search_item input[type=submit]{
    width: 9.5rem;
    height: 4.3rem;
    border: .2rem solid #3399FF;
    border-radius: .5rem;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    padding: 0 1.1rem;
    color: #fff;
    background-color: #3399FF;
}

.search_area .search_area_button {
    margin-top: 2.4rem;
    text-align: center;
}

.search_area .search_area_button .btn_link01 {
    width: 100%;
    max-width: 45.8rem;
    height: 5.2rem;
    padding: 0;
    justify-content: center;
}

.before_x{
    width: 1.8rem;
    background: url(../img/top/before_x.svg)no-repeat center center;
    background-size: 100% auto;
}

.top_information{
    padding: 13rem 0 10rem;
}
.hd_medium{
    padding-left: 9.5rem;
    background: url(../img/top/hd_medium.svg)no-repeat left center;
    background-size: 7.9rem auto;
    font-size: 4.5rem;
    font-weight: bold;
    letter-spacing: .08em;
    color: #D94473;
    margin-bottom: 2.7rem;
}
.top_information_item+.top_information_item{
    margin-top: 3.3rem;
}
.top_information_item_hd{
    font-size: 3.1rem;
    font-weight: bold;
    letter-spacing: .08em;
    color: #D94473;
    padding-left: 1.5rem;
    display: flex;
    margin-bottom: 1rem;
}
.top_information_item_hd span{
    padding-right: 3rem;
    background: url(../img/top/hd_information.svg)no-repeat right center;
    background-size: 1.4rem auto;
}
.top_information_list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 2rem;
}
.top_information_btn{
    position: absolute;
    right: 0;
    top: .7rem;
    z-index: 2;
}

.top_driver{
    background-image: linear-gradient(to right, #F7E0E8 , #E0EFFF);
    padding: 4.8rem 0;
}
.driver_slick{
    margin-bottom: 4rem!important;
}
.driver_slick .slick-list{
    padding: 1rem 0!important;
}
.driver_slick_item{
    width: 30.9rem;
    max-width: 30.9rem;
    margin: 0 2.6rem;
    transition: top .3s;
    position: relative;
}
.driver_slick_item a{
    display: block;
    border-radius: 1rem;
    box-shadow: 0 0 .6rem rgba(0,0,0,.16);
    background-image: linear-gradient(to bottom, #fff , #FFF4F7);
    padding: 2rem 2rem 7rem;
    border: .5rem solid #D94473;
    text-decoration: none!important;
    position: relative;
}
.driver_slick_item a:before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 1.6rem;
    width: 100%;
    height: 4.2rem;
    background: url(../img/top/modal_target.svg)no-repeat center center;
    background-size: 4.2rem auto;
}
.driver_slick_item .img_box{
    border-radius: .6rem;
    padding-top: 56%;
    margin-bottom: 1.6rem;
}
.driver_item_type{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 3.6rem;
    border-radius: 2rem;
    background: #D94473;
    color: #fff;
    font-size: 1.4rem;
    letter-spacing: .08em;
    font-weight: 500;
}
.driver_item_tag{
    display: flex;
    justify-content: flex-end;
    grid-gap: 1.7rem;
    margin: .3rem 0 2rem;
}
.driver_item_tag span{
    font-size: 1.1rem;
    font-weight: bold;
    color: #A2A2A2;
}
.driver_item_title{
    font-size: 2rem;
    line-height: 1.6;
    font-weight: bold;
    letter-spacing: .08em;
    color: #D94473;
}
.driver_item_name{
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: .08em;
    color: #D94473;
}
.driver_slick .slick-dots li button:before{
    background: #fff;
}
.driver_slick .slick-dots li button:hover:before,
.driver_slick .slick-dots li.slick-active button:before{
     background: #D94473;
}
.driver_slick .slick-prev{
    background: url(../img/top/slick_prev_pink.svg)no-repeat;
    background-size: 1.9rem auto;
}
.driver_slick .slick-next{
    background: url(../img/top/slick_next_pink.svg)no-repeat;
    background-size: 1.9rem auto;
}
.top_driver_btn{
    text-align: center;
    margin-top: 6.5rem;
}
.top_driver_btn .btn_link01{
    width: 29rem;
    justify-content: center;
}



html.is-popup{
  overflow: hidden;
}
.modalMedicine {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s;
  background: rgba(29, 23, 25, 0.9);
}
.modalMedicine.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: opacity .5s;
}
.modal__contents {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  opacity: 0;
  transition: opacity .5s;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.is-open .modal__contents {
  opacity: 1;
}
.modal__body {
  overflow: hidden;
  border: .5rem solid #D94473;
    background-image: linear-gradient(to bottom, #fff , #FFF4F7);
  pointer-events: auto;
  border-radius: 1rem;

  width: 81rem;
  max-width: calc(100vw - 10rem);
  max-height: calc(100dvh - 10rem);
  margin: 0 auto;
}
.modalMedicine__body {
  overflow: hidden;
  pointer-events: none;
}
.modalMedicine__body.is-show {
  height: auto;
  overflow-x: hidden;
  overflow-y: auto;
  pointer-events: auto;
}
.modal__box{
  display: none;

  width: 100%;
  max-height: 100%;
  max-width: 100%;
  padding: 9rem 5.5rem 2rem;
  position: relative;
}
.modal__box.is_active{
  display: block;
}

.modal__closeButton{
  background: url(../img/top/icon_close.svg)no-repeat left center;
  background-size: 100% auto;
  position: absolute;
  width: 4.6rem;
  height: 4.6rem;
  right: 2.5rem;
  top: 2rem;
  z-index: 99;
}
.modal_close{
    margin-top: 2rem;
}
.modal_close a{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    font-weight: bold;
    letter-spacing: .08em;
    color: #D94473;
    opacity: .72;
}

.modal_top{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2.6rem;
}
.modal_top dt{
    width: 31.5rem;
}
.modal_top dd{
    width: calc(100% - 31.5rem - 2rem);
    padding-left: 2.8rem;
}
.modal_top .img_box{
    padding-top: 71%;
    border-radius: .6rem;
}
.modal_top_title{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    grid-gap: .5rem;
    margin-bottom: .7rem;
    margin-left: -2.8rem;
}
.modal_top_title span{
    padding: 0 2.8rem;
    background: #D94473;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 4.6rem;
    border-radius: 2.5rem;
    font-size: 2.2rem;
    font-weight: bold;
    letter-spacing: .08em;
    position: relative;
}
.modal_top_title span:first-of-type:before{
    content: '';
    position: absolute;
    right: 2.4rem;
    top: -2.9rem;
    width: 4.7rem;
    height: 3.3rem;
  background: url(../img/top/icon_car.svg)no-repeat left center;
  background-size: 100% auto;
}
.modal_top_name{
    font-size: 1.6rem;
    font-weight: 500;
    color: #D94473;
    letter-spacing: .08em;
}
.modal_top_type{
    font-size: 1.6rem;
    font-weight: 500;
    color: #D94473;
    letter-spacing: .08em;
}
.modal_top_tag span{
    color: #A2A2A2;
    font-size: 1.1rem;
}


.faq_list dl{
}
.faq_list dl+dl{
    margin-top: 3.8rem;
}
.faq_list dl dt{
    display: flex;
    align-items: center;
    /*min-height: 4.6rem;*/
    padding: 1rem 3rem 1rem 5rem;
    position: relative;
    z-index: 2;
    cursor: pointer;
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: .08em;
    font-weight: bold;
    border-radius: 5rem;
    background: #F7E0E8;
}
.faq_list dl dt:before{
    content: 'Q';
    position: absolute;
    z-index: 2;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    background: url(../img/top/faq_q.svg)no-repeat center center;
    background-size: 100% auto;
    border-radius: 50%;
    color: transparent;
}
.faq_list dl dd{
    font-size: 1.4rem;
    line-height: 1.92;
    font-weight: 500;
    letter-spacing: .08em;
    padding: 1.5rem 3rem 0 5rem;
    position: relative;
}
.faq_list dl dd:before{
    content: 'A';
    position: absolute;
    z-index: 2;
    left: 1rem;
    top: 1.4rem;
    width: 3rem;
    height: 3rem;
    background: url(../img/top/faq_a.svg)no-repeat center center;
    background-size: 100% auto;
    border-radius: 50%;
    color: transparent;
}

.modal_holidays{
    margin-top: 5rem;
    border-radius: 2.3rem;
    background: #F7E0E8;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.modal_holidays dt{
    width: calc(100% - 25rem - 3rem);
}
.modal_holidays dd{
    width: 25rem;
}
.modal_holidays_img img{
    border-radius: 1.4rem;
}
.modal_holidays_hd{
    padding-left: 4.7rem;
    background: url(../img/top/icon_car.svg)no-repeat left center;
    background-size: 4.1rem auto;
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: .08em;
}
.modal_holidays_text{
    margin-top: 1rem;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: .08em;
    line-height: 1.92;
}
.modal_holidays_btn{
    margin-top: 1rem;
}
.modal_contact{
    text-align: center;
    margin-top: 2.6rem;
}
.modal_contact a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 25.7rem;
    height: 5.7rem;
    border-radius: 3rem;
    font-size: 1.9rem;
    font-weight: 500;
    color: #fff;
    background: #D94473;
}

.top_news{
    padding: 9rem 0;
}
.top_news_dl{
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.top_news_dl dt{
    width: 41rem;
}
.top_news_dl dd{
    width: calc(100% - 41rem);
}
.news_list{
    border-top: 1px solid #D3D3D3;
}
.news_list li{
    border-bottom: 1px solid #D3D3D3;
}
.news_list a{
    display: flex;
    align-items: center;
    padding: 3rem 0 3rem 1.6rem;
}
.news_list .date{
    font-size: 1.2rem;
    letter-spacing: .08em;
    font-weight: bold;
    color: #6E6E6E;
    width: 11.2rem;
}
.news_list .categ_span{
    width: 8.2rem;
}
.news_list .categ_span span{
    color: #D94473;
    font-size: .9rem;
    font-weight: 400;
    letter-spacing: .08em;
    padding: 0 1rem;
    min-width: 7rem;
    height: 1.8rem;
}
.news_list .text{
    display: inline-block;
    max-width: calc(100% - 11.2rem - 8.2rem);
    font-size: 1.4rem;
    letter-spacing: .08em;
    font-weight: bold;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news_list .text:before{
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width .3s ease-in-out;
}
@media screen and (min-width: 960px) {
    .news_list a:hover .text,
    .news_list a:hover{
        text-decoration: none;
    }
    .news_list a:hover .text:before{
        width: 100%;
        right: auto;
        left: 0;
    }
}

.top_news_btn{
    position: absolute;
    left: 0;
    top: 9.2rem;
}

.search_area.have_bg{
    margin: 0;
    padding: 9.2rem 0 5.5rem;
    background-image: linear-gradient(to right, #F7E0E8 , #E0EFFF);
}

.js-tab{
    position: relative;
}
.js-tab-box{
    position: absolute;
    width: 100%;
    opacity: 0;
    pointer-events: none;
}
.js-tab-box.is-active{
    position: static;
    opacity: 1;
    pointer-events: auto
}

.categ_title{
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: .08em;
    margin-bottom: 1.7rem;
    padding-left: 3.3rem;
    background: url(../img/common/icon_categ.svg)no-repeat left center;
    background-size: 2.7rem auto;
}
.categ_tab_target{
    display: flex;
    flex-wrap: wrap;
    grid-gap: 2.5rem 3.2rem;
    margin-bottom: 3.8rem;
}
.categ_tab_target a{
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    height: 4.3rem;
    padding: 0 1.2rem;
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: .08em;
    border-radius: .5rem;
    background: #fff;
    color: #939393;
    box-shadow: 0 .3rem .6rem rgba(0,0,0,.16);
    position: relative;
}
@media screen and (min-width: 960px) {
    .categ_tab_target a:hover{
        text-decoration: none;
        opacity: .7;
    }
}
.categ_tab_target a.is-active{
    background: #D94473;
    color: #fff;
    pointer-events: none;
}
.categ_tab_target a:before{
    content: '';
    position: absolute;
    left: 50%;
    top: calc(100% - 1px);
    transform: translateX(-50%);
    border: .8rem solid transparent;
    border-top: .8rem solid #D94473;
    transition: all .5s;
    opacity: 0;
}
.categ_tab_target a.is-active:before{
    opacity: 1;
}

.guide_box a{
    display: block;
    max-width: 71.2rem;
    margin: 6rem auto 12.4rem;
    position: relative;
}
.guide_img{
    position: absolute;
    left: 5.9rem;
    bottom: 2.4rem;
    width: 15.7rem;
}
/*privacy*/
p.pp_top{
    padding-top: 75px;
}

p.pp_title{
    font-size: 17px;
    letter-spacing: 0.1em;
    font-weight: bold;
    padding-bottom: 20px;
}

p.pp_txt{
    font-size: 14px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    line-height: 30px;
    border-bottom: 1px solid #000000;
    letter-spacing: 0.08em;
}

p.pp_txt:last-child{
    margin-bottom: 100px;
}
/*sitemap*/
.sitemap-main{
    display: flex;
    justify-content: flex-start;
    padding-top: 75px;
    padding-bottom: 100px;
}
.sitemap-main ul{
    width: 33%;
}
.sitemap-main li{
    margin-bottom: 45px;
}
.sitemap-main li a{
    letter-spacing: 0.1em;
    font-size: 20px;
    font-weight: bold;
    color:#000;
}
.sitemap-main li a:hover{
    color:#ccc;
}
/*news*/
.news_wrap{
    padding: 6.6rem 0 8.7rem;
}
.news_categ_box{
    border-radius: 1rem;
    background: #F7E0E8;
    padding: 3rem 4rem;
}
.news_categ_box .categ_tab_target{
    margin-bottom: 0;
    grid-gap: 1.8rem 1.4rem;
}
.news_categ_box .categ_tab_target a:before{
    content: none;
}
.news_number{
    font-size: 2rem;
    font-weight: bold;
    margin: 3.4rem 0 2.3rem;
}

#company_table{
	margin: 50px 0px 100px;
}

#company_table th{
	font-size: 15px;
	font-weight: bold;
	letter-spacing: 0.08em;
	border-bottom: 1px solid #BFBFBF;
	padding-bottom: 25px;
	padding-top: 25px;
	line-height: 27px;
	text-align: left;
}

#company_table td{
	font-size: 14px;
	letter-spacing: 0.08em;
	border-bottom: 1px solid #BFBFBF;
	padding-bottom: 25px;
	padding-top: 25px;
	line-height: 27px;
}

.guide_list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 5rem 4.5rem;
}
.guide_list .news_link{
    /*padding: 1.4rem 1.4rem 6.3rem;*/
    padding: 1.4rem 1.4rem 2.3rem;
}
#news .categ_span span{
    color: #D94473;
}

.news_link{
    height: 100%;
    position: relative;
}
#news .news_link .title{
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.33;
    margin: .9rem 0;
}
.news_link .text{
    font-size: 1.4rem;
    letter-spacing: .08em;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.guide_list .news_link .date{
    position: absolute;
    left: 1.4rem;
    bottom: 2rem;
    z-index: 1;
}

/* !wp-pagenavi
---------------------------------------------------------- */
.wp-pagenavi {
    display: flex;
    justify-content: center;
    align-items: center;
    grid-gap: .8rem;
    width: 53.6rem;
    max-width: 100%;
    margin: 7.8rem auto 0;
    position: relative;
    padding: 0;
    text-align: center;
    border: 1px solid #D94473;
    border-radius: 4rem;
    height: 6.3rem;
}

.wp-pagenavi .pages {
    display: none;
}

.wp-pagenavi a, 
.wp-pagenavi span {
    border: 0;
    padding: 0;
    margin: 0;
}

.wp-pagenavi .page {

}

.wp-pagenavi a, 
.wp-pagenavi .current {
    width: 4.4rem;
    height: 4.4rem;
    font-size: 3rem;
    line-height: 1.5;
    font-weight: bold;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .5s;
    color: #D94473;
    border-radius: 50%;
}
.wp-pagenavi .current{
    text-decoration: none;
    opacity: 1;
    color: #fff;
    background: #D94473;
}

.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink{
    font-size: 0;
    background: url(../img/common/page_prev.svg)no-repeat center center;
    background-size: 1.3rem auto;
}
.wp-pagenavi .nextpostslink {
    background: url(../img/common/page_next.svg)no-repeat center center;
    background-size: 1.3rem auto;
}
.wp-pagenavi .first{
    background: url(../img/common/page_first.svg)no-repeat center center;
    background-size: 1.9rem auto;
    font-size: 0;
}
.wp-pagenavi .last{
    background: url(../img/common/page_last.svg)no-repeat center center;
    background-size: 1.9rem auto;
    font-size: 0;
}
@media screen and (min-width: 960px) {
    .wp-pagenavi a:hover{
        text-decoration: none;
        opacity: 1;
        color: #fff;
        background-color: #D94473!important;
    }
    .wp-pagenavi .previouspostslink:hover{
        background: url(../img/common/page_prev_hover.svg)no-repeat center center;
        background-size: 1.3rem auto;
    }
    .wp-pagenavi .nextpostslink:hover{
        background: url(../img/common/page_next_hover.svg)no-repeat center center;
        background-size: 1.3rem auto;
    }
    .wp-pagenavi .first:hover{
        background: url(../img/common/page_first_hover.svg)no-repeat center center;
        background-size: 1.9rem auto;
    }
    .wp-pagenavi .last:hover{
        background: url(../img/common/page_last_hover.svg)no-repeat center center;
        background-size: 1.9rem auto;
    }
}

/*news_detail*/
.news_detail_wrap{
    padding: 6.4rem 0 13.5rem;
}
.news_detail_wrap .inner{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.news_detail_wrap #main{
    width: 67rem;
}
.news_detail_wrap #side{
    width: 33.2rem;
}
.news_detail_date{
    font-size: 1.2rem;
    font-weight: bold;
    color: #6E6E6E;
    margin-top: 1rem;
}
.news_detail_head{
    font-size: 2.5rem;
    font-weight: bold;
    margin: 1rem 0 2rem;
}

.news_detail_cont a{
	color:#3399FF;
	text-decoration: underline;
}
.news_detail_cont a:hover{
	text-decoration: none;
}
.news_detail_cont p,
.news_detail_cont{
    font-size: 1.4rem;
    line-height: 1.92;
    color: #000000;
}
.news_detail_cont p {
    margin-bottom: 2.7rem;
}
.news_detail_cont h2{
    border-left: 1.4rem solid #D94473;
    padding: 1.4rem 1rem;
    background: #F5F5F5;
    font-size: 2rem;
    line-height: 1.5;
    font-weight: bold;
    letter-spacing: .08em;
    margin-bottom: 1.75rem;
    margin-top: 3.5rem;
}
.news_detail_cont h2 span{
    padding-top: 11.4rem;
}

.news_detail_cont h3 {
    position: relative;
    padding-left: 1.3rem;
    border-left: .3rem solid #D94473;
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 1.4rem;
}

.news_detail_cont table {
    width: 100%;
    margin-bottom: 2.7rem;
    table-layout: fixed;
}

.news_detail_cont table th,
.news_detail_cont table td {
    border: 1px solid #BFBFBF;
    padding: 1rem;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.928;
    letter-spacing: .08em;
    text-align: left;
    vertical-align: middle;
}

.news_detail_cont table th {
    text-align: center;
    font-weight: bold;
}


div#toc_container,
.table_contents{
    width: 100%;
    display: block;
    margin: 5rem 0 2.5rem;
    border: 1px solid #D94473;
    border-radius: 1rem;
    padding: 3.8rem 3.5rem;
}
#toc_container p.toc_title,
.table_contents_title{
    text-align: left;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: .08em;
    color: #000000;
}
.table_contents_title+ul,
#toc_container p.toc_title+ul.toc_list{
    margin-top: 1.4rem;
}
.news_detail_cont .toc_list,
.news_detail_cont .toc_list ul,
.news_detail_cont .table_contents ul{
    display: grid;
    grid-gap: .6rem;
    line-height: 1.5;
}

.news_detail_cont .toc_list ul {
    margin-top: .6rem;
}

#toc_container a,
.table_contents a{
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: .08em;
}
/*.toc_number {
    display: none;
}*/
.wp-block-heading span {
  padding-top: 9.6rem;
}

blockquote+blockquote,
.wp-block-group+.wp-block-group,
.paragraph_box+.paragraph_box{
    margin-top: 3.5rem;
}
.news_detail_cont figure{
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 5rem;
}
.news_detail_cont figure img{
    border-radius: 1rem;
    width: 100%;
}
blockquote ul,
.wp-block-group ul,
.news_detail_cont ul{
    display: grid;
    grid-gap: 1.4rem;
    margin: 2.5rem 0;
}
/*blockquote ul li,
.wp-block-group ul li,
.news_detail_cont ul li{
    position: relative;
    padding-left: 3rem;
    font-size: 1.8rem;
    line-height: 1.5;
    font-weight: 500;
}*/
blockquote ul li,
.wp-block-group ul li,
.news_detail_cont ul li{
    position: relative;
    padding-left: 2.5rem;
    font-size: 1.4rem;
    line-height: 1.5;
    font-weight: 500;
}
blockquote ul li:before,
.wp-block-group ul li:before{
    content: '';
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 50%;
    background: #D94473;
    position: absolute;
    left: 0;
    top: .7rem;
    z-index: 1;
}
.news_detail_cont ul li:before{
    content: '';
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 50%;
    background: #D94473;
    position: absolute;
    left: 0;
    top: .4rem;
    z-index: 1;
}
/*blockquote ol,
.wp-block-group ol,
.news_detail_cont ol{
    display: grid;
    grid-gap: 1.4rem;
    margin: 2.5rem 0;
}
blockquote ol li,
.wp-block-group ol li,
.news_detail_cont ol li{
    position: relative;
    padding-left: 1.3rem;
    border-left: .3rem solid #D94473;
    font-size: 1.6rem;
    line-height: 1.5;
}*/
.toc_list li{
    font-size: 1.4rem;
}
.toc_list li:before{
    content: none!important;
}

.people_intro{
    border: 1px solid #D94473;
    border-radius: 1rem;
    padding: 2.5rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 3.4rem;
}
.people_intro dt{
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    overflow: hidden;
}
.people_intro dt img{
    height: 100%;
    object-fit: cover;
}
.people_intro dd{
    width: calc(100% - 8rem - 2.5rem);
    font-size: 1.4rem;
    line-height: 1.92;
}
.people_name{
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: .8rem;
    color: #D94473;
}

.pager_wrap {
  max-width: 55.6rem;
  margin: 3.2rem auto 0;
}
.pager_wrap ul {
  position: relative;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 960px) {
    .pager_wrap ul li a:hover {
      opacity: 0.7;
      text-decoration: none;
    }
}
.pager_wrap ul .list a {
    width: 29rem;
    justify-content: center;
}
.pager_wrap ul .list a:before{
    content: none;
}
.pager_wrap ul .prev a, .pager_wrap ul .next a{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    margin: auto;
    font-size: 1.6rem;
    color: #3399FF;
}
.pager_wrap ul .prev a{
    padding-left: 1.8rem;
    left: 0;
    background: url(../img/common/pager_prev.svg)no-repeat left top 60%;
    background-size: 1.2rem auto;
}
.pager_wrap ul .next a{
    padding-right: 1.8rem;
    right: 0;
    background: url(../img/common/pager_next.svg)no-repeat right top 60%;
    background-size: 1.2rem auto;
}


.news_side_hd{
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    height: 5rem;
    border-radius: .5rem;
    background: #3399FF;
    color: #fff;
    margin-bottom: 2.4rem;
}
.news_side_list{
    display: grid;
    grid-gap: 4rem;
}
#side .news_link{
    padding: 1.4rem 1.4rem 2rem;
}

/*guides*/
.guides_top{
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: .08em;
    text-align: center;
    margin-bottom: 2.4rem;
}
.guides_top span{
    display: inline-block;
    padding: 0 3.3rem 2rem;
    background: url(../img/common/line_left.svg)no-repeat left center,
    url(../img/common/line_right.svg)no-repeat right center;
    background-size: 3.4rem auto,3.4rem auto;
}


/*glossary_wrap*/
.glossary_wrap{
    padding: 9rem 0 20rem;
}
.glossary_anchor{
    display: flex;
    justify-content: space-between;
}
.glossary_anchor a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 1.2rem;
    border-radius: .5rem;
    letter-spacing: .08em;
    font-size: 1.6rem;
    font-weight: bold;
    background: #D94473;
    color: #fff;
    position: relative;
    box-shadow: 0 .3rem .6rem rgba(0,0,0,.16);
}
.glossary_anchor a:before{
    content: '';
    position: absolute;
    left: 50%;
    top: calc(100% + .9rem);
    transform: translateX(-50%);
    border: 1.1rem solid transparent;
    border-top: 1.2rem solid #D94473;
    transition: all .5s;
}
@media screen and (min-width: 960px) {
    .glossary_anchor a:hover{
        opacity: .7;
        text-decoration: none;
    }
}
.glossary_item{
    padding-top: 5.7rem;
}
.glossary_item_hd{
    font-size: 3rem;
    color: #D94473;
    font-weight: bold;
    letter-spacing: .08em;
    margin: 2.7rem 0;
}
.glossary_table{
    width: 100%;
    border-top: 1px solid #BFBFBF;
}
.glossary_table th,
.glossary_table td{
    padding: 2rem 0;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.928;
    letter-spacing: .08em;
    text-align: left;
    vertical-align: middle;
    border-bottom: 1px solid #BFBFBF;
}
.glossary_table th{
    width: 28.3rem;
    font-size: 2rem;
    letter-spacing: .08em;
    font-weight: bold;
}

/*faq*/
#faq #wrapper{
    overflow: visible;
}
.faq_wrap{
    padding: 1px 0 25rem;
}
.faq_wrap .inner{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.faq_side{
    padding-top: 10rem;
    width: 27.6rem;
    position: sticky;
    top: 3rem;
}
.faq_main{
    width: calc(100% - 27.6rem);
}
.faq_side_list{
    display: grid;
    grid-gap: 2rem;
}
.faq_side_list a{
    padding-left: 2.6rem;
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: .08em;
    position: relative;
}
.faq_side_list a:before{
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    width: 1.4rem;
    height: 1.4rem;
    background: #D94473;
    border-radius: 50%;
    opacity: 0;
    transition: opacity .5s;
}
.faq_side_list a:hover,
.faq_side_list .is_active a{
    color: #D94473;
    text-decoration: none;
}
.faq_side_list a:hover:before,
.faq_side_list .is_active a:before{
    opacity: 1;
}

.faq_item{
    padding-top: 7rem;
}
.faq_item_hd{
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: .08em;
    color: #D94473;
    margin: 2.3rem 0;
}
.faq_item .faq_list dl dt{
    min-height: 6.6rem;
    padding-left: 6.2rem;
}
.faq_item .faq_list dl dd{
    padding-left: 6.2rem;
}
.faq_item .faq_list dl dt:before,
.faq_item .faq_list dl dd:before{
    left: 2rem;
}
.faq_list_btn{
    margin-top: 2.5rem;
}
.faq_list_btn .btn_link01{
    font-size: 1.7rem;
    width: 29rem;
    height: 5.2rem;
    padding: 0 4rem;
    justify-content: center;
}

/*media*/
#media #teaser{
    padding: 8rem 0;
    text-align: center;
}
#media .teaser_hd{
    display: grid;
    justify-content: center;
    grid-gap: 1.5rem;
}
.teaser_hd_jap img{
    height: 6.8rem;
}
.media_teaser_sub{
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: .08em;
    margin: 2.8rem 0 2rem;
}
#media .teaser_text{
    font-size: 1.8rem;
    line-height: 1.88;
}
.media_teaser_img01{
    position: absolute;
    left: 3.7rem;
    bottom: 0;
    width: 26.9rem;
}
.media_teaser_img02{
    position: absolute;
    right: 0;
    bottom: 0;
    width: 35.7rem;
}

.media_sec01{
    padding: 5.3rem 0 7rem;
    text-align: center;
}
.media_secc01_hd span{
    display: inline-flex;
    padding: 1.2rem 4.2rem;
    font-size: 3.5rem;
    font-weight: bold;
    letter-spacing: .08em;
    border-radius: 4rem;
    color: #fff;
    background: #3399FF;
    margin-bottom: 4rem;
}
.media_sec01_item02 .media_secc01_hd span{
    background: #D94473;
    margin-bottom: 2.5rem;
}
.media_sec01_p01{
    font-size: 2.5rem;
    letter-spacing: .08em;
    font-weight: bold;
    line-height: 1.36;
}
.media_sec01_list{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 2rem;
    margin: 2.8rem 0 3.5rem;
}
.media_sec01_list li{
    border-radius: 50%;
    border: .6rem solid #3399FF;
    overflow: hidden;
    position: relative;
}
.media_sec01_list .img_box{
    width: 100%;
    padding-top: 0;
    aspect-ratio: 1 / 1;
}
.media_sec01_list .text{
    position: absolute;
    z-index: 9;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 40%;
    padding-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #3399FF;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.66;
}

.media_sec01_item02{
    margin-top: 7.2rem;
}
.media_sec01_item02 .media_sec01_p01{
    color: #D94473;
}
.media_sec01_p02{
    margin-top: 1.5rem;
    font-size: 1.8rem;
    line-height: 1.88;
}

.media_sec02{
    padding: 9.3rem 0 12.5rem;
    background-image: linear-gradient(to right, #F7E0E8 , #E0EFFF);
}
.media_sec02_hd{
    text-align: center;
    color: #D94473;
    margin-bottom: 3.7rem;
    font-size: 3rem;
    font-weight: bold;
}
.media_sec02_list{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 4.5rem 3.8rem;
}
.media_sec02_list li{
    border-radius: 1rem;
    overflow: hidden;
    background: #fff;
}
.media_sec02_list .title{
    background: #D94473;
    color: #fff;
    padding: 0 3.3rem;
    font-size: 2.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    height: 7.8rem;
}
.media_sec02_list .cont{
    padding: 1.7rem 3.3rem 3.3rem;
}
.media_sec02_list .text{
    font-size: 1.4rem;
    line-height: 1.785;
}
.media_sec02_list .btn{
    margin-top: 2.5rem;
}
.media_sec02_list .btn_link01{
    width: 100%;
    height: 5.2rem;
    padding: 0;
    justify-content: center;
}

.media_sec03{
    padding: 10.4rem 0 0;
    text-align: center;
}
.media_sec03_box{
    border-radius: 1rem;
    box-shadow: 0 .3rem .6rem rgba(0,0,0,.16);
    background: url(../img/media/before_sec03.png)no-repeat right 1.5rem bottom 2rem,
    url(../img/media/bg_sec03.png)no-repeat;
    background-size: 40rem auto,100% auto;
    padding: 8.5rem 0 10rem;
}
.media_sec03_hd{
    color: #D94473;
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: .08em;
    margin-bottom: 2.8rem;
}
.media_sec03_text{
    font-size: 1.8rem;
    letter-spacing: .08em;
    line-height: 1.88;
}
.media_sec03_text p+p{
    margin-top: 3.4rem;
}
.media_sec03_text span{
    font-weight: 800;
}

.media_search{
    text-align: center;
    margin-top: 0;
    padding: 8.6rem 0 9.8rem;
}
.media_search_title{
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: .08em;
    color: #D94473;
}
.media_search_title+.search_box{
    margin-top: 6.6rem;
}
.media_search_btn{
    margin-top: 2.4rem;
    text-align: center;
}
.media_search_btn .btn_link01{
    width: 45.8rem;
    height: 5.2rem;
    padding: 0;
    justify-content: center;
}

/*contact*/
.contact_wrap{
    padding: 8rem 0 8.8rem;
    color: #000;
}
.contact_wrap .inner{
    max-width: 76rem;
}

.step_list{
    display: flex;
    justify-content: center;
    grid-gap: 19rem;
    position: relative;
}
.step_list li{
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    letter-spacing: .05em;
    color: #646464;
    position: relative;
    z-index: 2;
}
.step_list li+li:before{
    content: '';
    position: absolute;
    right: 100%;
    top: 3.1rem;
    z-index: 1;
    width: 19rem;
    height: 1px;
    background: #646464;
}
.step_list .number{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 6.3rem;
    height: 6.3rem;
    border-radius: 50%;
    border: 1px solid #646464;
    font-size: 2rem;
    font-weight: bold;
    color: #646464;
    margin-bottom: 1.4rem;
}

.contact_top{
    font-size: 1.8rem;
    letter-spacing: .1em;
    margin-bottom: 4rem;
}
.contactTable{
    width: 100%;
}
.contactTable th,
.contactTable td{
    display: block;
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: .05em;
    padding-bottom: 4rem;
}
.contactTable th{
    font-weight: bold;
    text-align: left;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    grid-gap: 1rem;
    padding-bottom: 1.4rem;
}
.contactTable th:before{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 0;
    width: 4.7rem;
    height: 2.4rem;
    border-radius: 1.2rem;
    background: #939393;
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    content: '任意';
}
.contactTable th.required:before{
    background: #DB0000;
    content: '必須';
}
.contactTable th font{
}

.file_box,
.contactTable input[type=text],
.contactTable input[type=tel],
.contactTable input[type=email],
.contactTable select,
.contactTable textarea{
    width: 100%;
    height: 5.5rem;
    border-radius: .5rem;
    background: #fff;
    color: #000;
    padding: 0 1.6rem;
    font-size: 1.7rem;
    letter-spacing: 0.1em;
    font-weight: 500;
    border: 1px solid #646464;
    /*box-shadow: inset .3rem .3rem .6rem rgba(0,0,0,.16);*/
}
.file_box{
    padding-left: 16rem;
    position: relative;
    display: flex;
    align-items: center;
}
.contactTable input[type=file]{
    position: absolute;
    left: 0;
    opacity: 0;
}
.file_label{
    cursor: pointer;
    position: absolute;
    left: 1.1rem;
    top: 50%;
    z-index: 9;
    transform: translateY(-50%);
    width: 13.6rem;
    height: 3.1rem;
    border-radius: .5rem;
    background: #A8A8A8;
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
}
.file_txt{

}
.file_note{
    font-size: 1.4rem;
    font-weight: 500;
    margin-top: 1.1rem;
}
.contactTable select {
    background: url(../img/common/arrow_select.svg) no-repeat right 1.5rem center #fff;
    background-size: 1.1rem auto;
    padding: 0 6rem 0 1.6rem;
}
.contactTable .birth_box select {
    background: url(../img/common/arrow_select.svg) no-repeat right 2rem center #fff;
    background-size: 2rem auto;
}
.contactTable textarea{
    resize: none;
    min-height: 17rem;
    padding: 1.5rem 1.6rem;
    display: block;
}

textarea::-webkit-input-placeholder{ /*WebKit browsers*/
  color: #B4B4B4;
}
textarea::-moz-input-placeholder{ /*Mozilla Firefox*/
  color: #B4B4B4;
}
textarea::-ms-input-placeholder{ /*Internet Explorer*/ 
  color: #B4B4B4;
}
input::-webkit-input-placeholder{ /*WebKit browsers*/
  color: #B4B4B4;
}
input::-moz-input-placeholder{ /*Mozilla Firefox*/
  color: #B4B4B4;
}
input::-ms-input-placeholder{ /*Internet Explorer*/ 
  color: #B4B4B4;
}
.p-postal-code{
    max-width: 23.6rem!important;
}
.span_zip{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #1F215C;
    color: #fff;
    border-radius: .5rem;
    font-size: 1.7rem;
    font-weight: bold;
    padding: 0 3.2rem;
    height: 6rem;
    margin-left: 2.7rem;
    pointer-events: none;
}
.formItem+.formItem{
    margin-top: 1.6rem;
}
.formItemHd{
    font-size: 1.6rem;
    margin-bottom: .7rem;
}
.formItemHd span{
    font-size: 1.5rem;
    color: #9F9F9F;
}
.formNotes{
    font-size: 1.3rem;
    color: #666;
}
.formNotes p+p{
    margin-top: 1.9rem;
}
.formNotes a{
    color: #00A04E;
    text-decoration: underline;
}
.formNotes a:hover{
    text-decoration: none;
    opacity: 1;
}

.formAgree{
}
.formAgree a{
    color: #D94473;
    border-bottom: 1px solid currentColor;
}
.formAgree a:hover{
    border-color: transparent;
    text-decoration: none;
}
.formButton{
    margin-top: 4.8rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    grid-gap: 3rem;
}
.formButton .btn_link01{
    width: 42rem;
    max-width: 100%;
    height: 7.6rem;
    border-radius: 4rem;
    padding: 0;
}
.formButton .btn_link01:before{
    width: 2rem;
    right: 2rem;
}
.formButton .btn_form{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 2rem;
    letter-spacing: 0.08em;
    font-weight: bold;
    color: #3399FF;
    border-radius: 0;
    transition: opacity .3s;
    background: none;
    border: 0;
    box-shadow: none;
    position: relative;
    z-index: 9;
    padding: 0;
}

.disabled{
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: .5;
    pointer-events: none;
}

.formRadio .wpcf7-radio,
.formRadio,
.formCheckbox .wpcf7-checkbox{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    grid-gap: 1rem 2rem;
}

.wpcf7-checkbox .wpcf7-list-item,
.wpcf7-radio .wpcf7-list-item{
    /*width: 100%;*/
}
.formRadio label,
.formCheckbox label {
    display: flex;
    font-size: 1.6rem;
    letter-spacing: .05em;
    line-height: 1.5;
    font-weight: bold;
    color: #000;
    position: relative;
    cursor: pointer;
}

.formRadio label input[type="radio"],
.formCheckbox label input[type="checkbox"] {
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    opacity: 0;
}

.formRadio label span {
    position: relative;
    z-index: 2;
    padding: 1.5rem 1.8rem;
    color: #000;
    display: inline-block;
    font-weight: bold;
}

.formRadio label span:before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
    border-radius: .5rem;
    background: #EAEAEA;
    content: '';
    z-index: -1;
}

.formRadio label input[type="radio"]:checked + span{
    color: #fff;
}
.formRadio label input[type="radio"]:checked + span:before {
    background: #000;
}

.formAgree .formCheckbox{
}
.formAgree .formCheckbox label{
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: .12em;
}
.formCheckbox label span {
    position: relative;
    z-index: 2;
    padding-left: 3rem;
    display: inline-block;
    font-weight: bold;
}

.formCheckbox label span:before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-40%);
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 0;
    background: #fff;
    border: 1px solid #1D1D1D;
    content: '';
    z-index: 1;
}

.formCheckbox label span:after {
    position: absolute;
    left: .1rem;
    top: 0.8rem;
    width: 1.5rem;
    height: .8rem;
    border: .3rem solid #1D1D1D;
    border-width: 0 0 .2rem .2rem;
    transform: rotate(-45deg);
    content: '';
    z-index: 2;
    opacity: 0;
}

.formCheckbox label input[type="checkbox"]:checked + span:after {
    opacity: 1;
}

.wpcf7-list-item{
    margin: 0;
}
.wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 1em;
    font-weight: normal;
    display: block;
    position: absolute;
    white-space: nowrap;
}

.confirmWrap .contactTable td{
    font-size: 2rem;
    line-height: 1.35;
}

.birth_box p,
.birth_box{
    display: flex;
    align-items: center;
}
.birth_box select{
    width: 15.2rem;
}
.birth_box select.birth_year{
    width: 21.4rem;
}
.birth_line{
    opacity: 0;
    width: 3.2rem;
}

/*confirm*/
.confirm_wrap{
    padding: 11.8rem 0 13rem;
}
.confirm_hd{
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}
.confirm_hd span{
    width: 24.6rem;
    height: 6.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: .08em;
    background: #2B2B2B;
    color: #fff;
}
.confirm_top{
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: .12em;
    margin-bottom: 6rem;
}
.confirm_box{
    background: #fff;
    padding: 7.6rem 18.5rem 6rem;
}
.confirm_table{
    width: 100%;
}
.confirm_table th,
.confirm_table td{
    display: block;
    font-size: 1.7rem;
    line-height: 2.05;
    font-weight: 500;
    letter-spacing: .03em;
    text-align: left;
}
.confirm_table th{
    line-height: 1.5;
    letter-spacing: .12em;
    font-weight: bold;
    padding-bottom: 1.1rem;
    border-bottom: 1px solid #707070;
    margin-bottom: 1.3rem;
}
.confirm_table tr{
    display: block;
    margin-bottom: 5.7rem;
}
.btn_back{
    max-width: 100%;
}

/*thanks*/
.thanks_wrap{
    padding: 11.5rem 0 20rem;
    background: url(../img/common/bg_thanks_linear.png)no-repeat top center,
    url(../img/common/bg_thanks.jpg)no-repeat bottom center;
    background-size: 100% 100%,cover;
    text-align: center;
}
.thanks_hd{
    font-size: 2.7rem;
    font-weight: 900;
    margin-bottom: 1.7rem;
}
.thanks_txt a{
    color: #000;
}
.thanks_btn{
    margin-top: 5.8rem;
}
.thanks_btn .btn_link01{
    width: 30rem;
}

.count_down{
    text-align: right;
    font-size: 1.5rem;
    font-weight: 500;
    color: #B4B4B4;
    letter-spacing: .08em;
    margin-top: .5rem;
}

textarea+.wpcf7-not-valid-tip{
    margin-top: 1.8em;
}
.formAgree .wpcf7-list-item{
    width: 100%;
}
.formButton p{
    width: 100%;
    height: 100%;
}
.wpcf7-previous {
    display: block !important;
}

/*mv form*/
.mw_wp_form .horizontal-item + .horizontal-item{
    margin: 0 !important;
}

.mw_wp_form_confirm .formButton .disabled{
    -webkit-filter: grayscale(0%)!important;
    filter: grayscale(0%)!important;
    opacity: 1!important;
    pointer-events: auto!important;
}
.mw_wp_form_confirm .contactTable th .note,
.mw_wp_form_confirm .rec_contact,
.mw_wp_form_confirm .email_confirm,
.mw_wp_form_confirm .formAgree,
.mw_wp_form_input .contact_confirm_top,
.mw_wp_form_confirm .contact_input_top,
.mw_wp_form_confirm .count_down,
.mw_wp_form_confirm .span_zip,
.mw_wp_form_confirm .contactTable th span,
.mw_wp_form_confirm .contactTable th:before{
    display: none!important;
}
.mw_wp_form_confirm .contactTable th, 
.mw_wp_form_confirm .contactTable td {
    font-size: 1.4rem;
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: .03em;
    text-align: left;
}
.mw_wp_form_confirm .contactTable th {
    line-height: 1.5;
    letter-spacing: .05em;
    font-weight: bold;
}
.mw_wp_form_confirm .birth_line{
    opacity: 1;
    width: auto;
}
@media screen and (min-width: 768px){
    .mw_wp_form_confirm .contactTable th, 
    .mw_wp_form_confirm .contactTable td {
        padding: 3rem 0;
        display: table-cell;
        border-top: 1px solid #D8D8D8;
        border-bottom: 1px solid #D8D8D8;
    }
    .mw_wp_form_confirm .contactTable th {
        width: 23.4rem;
    }
}

.step_list li.is_active .number,
.mw_wp_form_input .step_list li:nth-of-type(1) .number,
.mw_wp_form_confirm .step_list li:nth-of-type(1) .number,
.mw_wp_form_confirm .step_list li:nth-of-type(2) .number{
    color: #fff;
    background: #646464;
}

.contact_tel_row{
    display: flex;
    align-items: flex-start;
}
.formRadio .error{
    width: 100%;
}

.contactTable th .note{
    font-size: 1.4rem;
    font-weight: 500;
    margin-left: 1em;
}

.contact_teaser{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    grid-gap: 2rem;
}

/*.thanks*/
.thanks_wrap#teaser{
    padding: 11rem 0;
}
.thanks_wrap .teaser_hd{
    margin: 4rem 0 2.5rem;
}
.thanks_btn{
    margin-top: 3rem;
}
.thanks_btn .btn_link01{
    width: 42rem;
    max-width: 100%;
    font-size: 2rem;
    height: 7.6rem;
    padding: 0;
    border-radius: 4rem;
    justify-content: center;
}
.thanks_btn .btn_link01:before{
    width: 2rem;
    right: 2rem;
}

/*404*/
.not_wrap{
    padding: 7.5rem 0 11rem;
    text-align: center;
}
.not_wrap .teaser_hd{
    margin-bottom:  2.5rem;
}
.not_wrap .teaser_hd_eng{
    font-size: 7rem;
}

/*Ambassador*/
.common_text p,
.common_text{
    font-size: 1.4rem;
    line-height: 1.92;
    letter-spacing: .08em;
    color: #000000;
}
.common_text p+p{
    margin-top: 2.7rem;
}
.ambassador_sec01{
    padding: 8.2rem 0 9.3rem;
}
.ambassador_sec01_item{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ambassador_sec01_item dt{
    width: 47rem;
}
.ambassador_sec01_item dd{
    width: 55.2rem;
}
.ambassador_sec01_item dd img{
    border-radius: 1rem;
}
.ambassador_sec01_item .media_sec02_hd{
    text-align: left;
    margin-bottom: 1.5rem;
}

.ambassador_sec02 {
    padding: 9.5rem 0 20rem;
    background-image: linear-gradient(to right, #F7E0E8, #E0EFFF);
}
.ambassador_list{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 4rem;
}
.ambassador_list li{
    position: relative;
}
.ambassador_list a{
    display: flex;
    justify-content: space-between;
    padding: 1.6rem;
    border-radius: 1rem;
    overflow: hidden;
    background: url(../img/ambassador/bg_li.png)no-repeat center center;
    background-size: 100% 100%;
    border: .4rem solid #D94473;
}
.ambassador_list a:before{
    content: '';
    position: absolute;
    z-index: 11;
    right: 0;
    bottom: 0;
    width: 2.9rem;
    height: 2.9rem;
    background: url(../img/ambassador/icon_plus.svg)no-repeat center center;
    background-size: 100% 100%;
}
.ambassador_list a:hover{
    text-decoration: none;
}
.ambassador_list .img_box{
    width: 21rem;
    padding-top: 0;
    aspect-ratio: 1 / 1.1;
    border-radius: .6rem;
}
.ambassador_list .cont{
    width: calc(100% - 21rem - 2rem);
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
.ambassador_list .title{
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: .08em;
    color: #fff;
    padding: 2.6rem 0;
}
.ambassador_name{
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: .08em;
    padding: .7rem 0;
}
.ambassador_name span{
    display: block;
    color: #3399FF;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: .08em;
}

.modal__body.is_ambassador .modal__box{
    padding: 0;
}
.modal__body.is_ambassador{
}
.modal__body.is_ambassador .modal__closeButton{
  background: url(../img/common/icon_close_pink.svg)no-repeat left center;
  background-size: 100% auto;
}

.modal_ambassador_top{
    padding: 6rem 5rem 6rem;
    position: relative;
    background: #D94473;
}
.modal_ambassador_top:before{
    content: 'ambassador';
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    text-align: center;
    width: 100%;
    text-transform: uppercase;
    font-size: 8.9rem;
    font-weight: bold;
    letter-spacing: .08em;
    color: #FFFFFF;
    opacity: .2;
}
.modal_ambassador_dl{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
}
.modal_ambassador_dl dt{
    width: 31.5rem;
}
.modal_ambassador_dl dt .img_box{
    padding-top: 84.7%;
    border-radius: .6rem;
}
.modal_ambassador_dl dd{
    width: calc(100% - 31.5rem - 3.5rem);
    font-size: 2.2rem;
    font-weight: bold;
    letter-spacing: .08em;
    color: #fff;
}
.modal_ambassador_intro{
    margin-top: 2rem;
    border-radius: .5rem;
    background: #fff;
    padding: 2.5rem 1.7rem;
}
.modal_ambassador_intro .ambassador_name{
    padding: 0;
}
.modal_ambassador_profile{
    margin-top: 1.8rem;
}
.modal_ambassador_profile_hd{
    font-size: 1.4rem;
    font-weight: 900;
    color: #3399FF;
    letter-spacing: .08em;
}
.modal_ambassador_profile p{
    font-size: 1.4rem;
    line-height: 1.92;
    letter-spacing: .08em;
}
.modal_ambassador_profile p+p{
    margin-top: 2.5rem;
}
.modal_ambassador_sns{
    padding-top: 1.8rem;
    margin-top: 1.8rem;
    border-top: 1px dashed #C6C6C6;
    display: flex;
    align-items: center;
    grid-gap: 3rem;
}
.modal_ambassador_sns dt{
    font-size: 1.4rem;
    font-weight: 900;
    color: #3399FF;
    letter-spacing: .08em;
}
.modal_ambassador_sns dd{
    display: flex;
    grid-gap: 2.5rem;
}
.modal_ambassador_sns dd a{
    width: 3rem;
}
.modal_ambassador_sns dd a img{
    width: 100%;
}

.modal_ambassador_bottom{
    padding: 3.5rem 5rem 2.5rem;
}
.modal_ambassador_reason{
    display: grid;
    grid-gap: 1.5rem;
    margin-bottom: 5rem;
}
.modal_ambassador_reason dt{
    padding: 1rem 1.8rem;
    border-radius: 5rem;
    background: #F7E0E8;
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: .08em;
}
.modal_ambassador_reason dd{
    font-size: 1.4rem;
    line-height: 1.92;
    letter-spacing: .08em;
}


/*0507*/
.modal__body.is_search{
    background: #fff;
    overflow: visible!important;
    border: 0;
}
.modal__body.is_search .modal__box{
    padding: 8rem 2.4rem;
    border: 0;
}
.modal__body.is_search .modal__closeButton{
    background: url(../img/common/icon_close_gray.svg) no-repeat left center;
    background-size: 100% auto;
    right: 0;
    top: 0;
    transform: translate(50%,-50%);
    width: 4rem;
    height: 4rem;
}
.modal_search_box{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    grid-gap: 2rem;
}
.modal_search_text{
    position: relative;
}
.modal_search_text input{
    width: 26.4rem;
    height: 4.7rem;
    border: .2rem solid #D3D3D3;
    border-radius: .5rem;
    font-size: 1.4rem;
    font-weight: 500;
    padding: 0 6rem 0 1.1rem;
    background-color: transparent;
    color: #B1B1B1;
}
.modal_search_text:before{
    content: '';
    position: absolute;
    right: 2rem;
    top: 0;
    width: 2.4rem;
    height: 100%;
    background: url(../img/common/icon_search.svg) no-repeat center center;
    background-size: 100% auto;
    pointer-events: none;
}
.modal_search_btn input[type=submit] {
    width: 9.5rem;
    height: 4.7rem;
    border: .2rem solid #D94473;
    border-radius: .5rem;
    font-size: 1.7rem;
    letter-spacing: .08em;
    font-weight: bold;
    text-align: center;
    padding: 0 1.1rem;
    color: #fff;
    background-color: #D94473;
}

.coming_soon {
    text-align: center;
    font-size: 5rem;
    color: #D94473;
    font-weight: bold;
    letter-spacing: .08em;
    text-transform: uppercase;
}

#news .news_link .text {margin-bottom: 3rem;}