/*===================================
ソフトリセット
===================================*/
ul, ol, dd {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,h2,h3,h4,h5,h6 {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
}
img {
    width: 100%;
    height: auto;
}

p {
    margin: 0;
}

img {
    width: 100%;
}

a {
    color: #000;
    text-underline-offset: 0.5em;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 40px 0;
}
.container__small {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 0;
}
@media screen and (max-width: 960px) {
    .container {
        max-width: 85%;
    }
    .container__small {
        max-width: 75%;
    }
}


body, pre, input, textarea, select {
    font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}


/*===================================
共通
===================================*/
@media screen and (min-width: 961px) {
    .pc { display: block; }
    .tb { display: block; }
    .sp { display: none; }
}
@media screen and (max-width: 960px) {
    .pc { display: none; }
    .tb { display: block; }
    .sp { display: none; }
}
@media screen and (max-width: 520px) {
    .pc { display: none; }
    .tb { display: none; }
    .sp { display: block; }
}

.fadeIn{
    animation-name: fadeInAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}
@keyframes fadeInAnime {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.fadeUp{
    animation-name:fadeUpAnime;
    animation-duration:0.5s;
    animation-fill-mode:forwards;
    opacity:0;
}
@keyframes fadeUpAnime{
    from {
        opacity: 0;
        transform: translateY(100px);
    }
  
    to {
        opacity: 1;
        transform: translateY(0);
    }
  }
  .fadeUpTrigger{
    opacity: 0;
}

.btn-entry {
	position: relative;
	width: 280px;
	height: 80px;
	margin: 0 auto;
	display: block;
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
}
.btn-entry img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	display: block;
	-webkit-transition: .4s ease-in-out;
	transition: .4s ease-in-out;
}
.btn-entry:hover img:nth-of-type(2) {
	opacity: 0;
}

/*スクロールダウン全体の場所*/
.scrolldown{
  position:absolute;
  right:5%;
  bottom:0px;
  animation: arrowmove 1s ease-in-out infinite;
}

@keyframes arrowmove {
    0%{bottom:1%;}
    50%{bottom:3%;}
    100%{bottom:1%;}
}

.scrolldown span{
    position: absolute;
    left: 3px;
    bottom: 26px;
    color:#000;
    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

.scrolldown:before {
    content: "";
    position: absolute;
    bottom: -50px;
    right: -6px;
    width: 1px;
    height: 20px;
    background: #000;
    transform: skewX(-31deg);
}

.scrolldown::after {
    content: "";
    position: absolute;
    bottom: -50px;
    right: 0;
    width: 1px;
    height: 110px;
    background: #000;
}

/* .scrolldown span{
  position: absolute;
  left:-15px;
  top: -15px;
  color: #000;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

.scrolldown::after{
  content: "";
  position: absolute;
  width: 1px;
  height: 30px;
  background: #000;
  animation: pathmove 1.4s ease-in-out infinite;
  opacity:0;
}

@keyframes pathmove{
  0%{
    height:0;
    top:0;
    opacity: 0;
  }
  30%{
    height:30px;
    opacity: 1;
  }
  100%{
    height:0;
    top:50px;
    opacity: 0;
  }
} */

body.fixed{
    position: fixed;
    width:100%;
}

header .btn-event {
    max-width: 152px;
    width: 152px;
    position: fixed;
    bottom: 26px;
    right: 55px;
    z-index: 10;
    -webkit-animation: floatV 2s ease-in-out infinite alternate;
    animation: floatV 2s ease-in-out infinite alternate;
}

@-webkit-keyframes floatV {
    0% {
      -webkit-transform: translate3d(0, -0.2em, 0);
              transform: translate3d(0, -0.2em, 0);
    }
    50% {
      -webkit-transform: translate3d(0, 0.2em, 0);
              transform: translate3d(0, 0.2em, 0);
    }
    100% {
      -webkit-transform: translate3d(0, -0.2em, 0);
              transform: translate3d(0, -0.2em, 0);
    }
  }
  @keyframes floatV {
    0% {
      -webkit-transform: translate3d(0, -0.2em, 0);
              transform: translate3d(0, -0.2em, 0);
    }
    50% {
      -webkit-transform: translate3d(0, 0.2em, 0);
              transform: translate3d(0, 0.2em, 0);
    }
    100% {
      -webkit-transform: translate3d(0, -0.2em, 0);
              transform: translate3d(0, -0.2em, 0);
    }
  }
  
  header .btn-event a:hover {
    opacity: 0.8;
  }




/*===================================
header
===================================*/
header {

}

.header-inner {
    /* max-width: 960px; */
    height:  100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 40px;
}

.menu {
    /* display: none; */
}

.menu li a {
    text-decoration: none;
}

.menu li a:hover {
    text-decoration: underline;
}

.header-logo img {
    width: 328px;
}

.header-right {
    display: flex;
    gap: 15px;
}

.header-right__icon {
    width: 50px;
}

.header-nav.panelactive .header-nav-list {
    position: fixed;
    z-index: 999;
    width: 850px;
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.header-nav ul {
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 20px 120px;
    font-size: 13px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    height: 120vh;
}

.header-nav {
    position: fixed;
    z-index: 999;
    top: 100px;
    right: -120%;
    width: 250px;
    height: 100%;
    background: #fff;
    transition: all 0.6s;
}

.header-nav.panelactive {
    right: 0;
}

.navi01 { width: 136px; }
.navi02 { width: 235px; }
.navi03 { width: 249px; }
.navi04 { width: 240px; }
.navi05 { width: 161px; }
.navi06 { width: 163px; }
.navi07 { width: 201px; }
.navi08 { width: 164px; }
.navi09 { width: 235px; }

.menu-sns {
    display: none;
}

.menu li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* .menu li:before {
    border-top: 1px solid #fff;
    content: "";
    width: 20px;
    margin-right: 10px;
} */

/*==================================================
　5-2-1 3本線が×に
===================================*/
/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.header-menu{
    position: relative;/*ボタン内側の基点となるためrelativeを指定*/
    cursor: pointer;
    width: 50px;
    height:50px;
    z-index: 9999;
  }
  
  /*ボタン内側*/
  .header-menu span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 4px;
    /* border-radius: 2px; */
    background: #171C61;
    width: 65%;
    }
  
  .header-menu span:nth-of-type(1) {
    top:10px; 
  }
  
  .header-menu span:nth-of-type(2) {
    top:23px;
  }
  
  .header-menu span:nth-of-type(3) {
    top:36px;
  }
  
  /*activeクラスが付与されると線が回転して×に*/
  
  .header-menu.active{
    background-color: #171C61;
  }

  .header-menu.active span {
    background-color: #fff;
  }

  .header-menu.active span:nth-of-type(1) {
      top: 18px;
      left: 18px;
      transform: translateY(6px) rotate(-45deg);
      width: 30%;
  }
  
  .header-menu.active span:nth-of-type(2) {
    opacity: 0;/*真ん中の線は透過*/
  }
  
  .header-menu.active span:nth-of-type(3){
      top: 30px;
      left: 18px;
      transform: translateY(-6px) rotate(45deg);
      width: 30%;
  }

@media screen and (max-width: 960px) {
    .header-inner {
        max-width: 90%;
    }
    header .btn-event {
        bottom: 218px;
    }
    .header-nav {
        right: -210%;
    }
    .header-menu {

    }
    .header-logo {
        width: 40%;
    }
    .header-logo img {
        width: 100%;
    }
    .header-right__icon {
        width: 35px;
    }
}

@media screen and (max-width: 520px) {
    .header-logo {
        width: 60%;
    }
    .header-nav {
        
    }
    .header-right {
        gap: 12px;
    }
    header .btn-event {
        bottom: 146px;
        right: 20px;
        width: 100px;
    }
    .header-nav {
        width: 100%;
        height: 100vh;
    }
    .header-nav.panelactive .header-nav-list {
        width: 100%;
        height: 100vh;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .header-nav ul {
        position: relative;
        gap: 30px;
        height: 100%;
        /* justify-content: center; */
        padding: 20px 15%;
    }
    .menu-sns {
        display: flex;
        gap: 10px;
        justify-content: center;
        align-items: center;
        width: 60%;
        margin: 0 auto;
    }
    .menu li:before {
        border-top: 1px solid black;
        content: "";
        width: 20px;
        margin-right: 10px;
    }
    .navi01,.navi02,.navi03,.navi04,.navi05,.navi06,.navi07,.navi08,.navi09 { filter: brightness(0); }
}


/*===================================
kv
===================================*/
.kv {
    /* background: url(../../assets/img/kv_pc.png) top no-repeat;
    padding-top: calc(1500 / 2668 * 100%); */
    width: 100%;
    /* height: 0;
    background-size: contain; */
    position: relative;
}
.slide-items {
    width: 100%;
    height: 100%;
  }
  
  .slide-items img {
    width: 100%;
    object-fit: cover;
  }

  .slick-next {
    /* right: -25px; */
    position: absolute;
    right: 15px;
    z-index: 1;
}

.slick-prev {
    /* right: -25px; */
    position: absolute;
    left: 15px;
    z-index: 1;
}

.kv__title {
    position: absolute;
    top: 50%;
    left: 55%;
    font-weight: bold;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.kv__title p {
    writing-mode: vertical-rl;
}

.kv__contact {
    position: absolute;
    position: absolute;
    bottom: -10%;
    right: 5%;
    width: 10%;
    z-index: 111;
}

.float-bnr {
    position: fixed;
    z-index: 1;
    width: 240px;
    left: 55px;
    top: 150px;
}

.float-bnr a img {
    filter: drop-shadow(0px 0px 3px rgba(0,0,0,0.6));
}

.float-bnr-fix {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1;
}


.float-bnr-fix a img {
    vertical-align: top;
}

.float-bnr-fix a {
    display: block;
    margin: 0;
    padding: 0;
}

@media screen and (max-width: 960px) {
    .scrolldown {
        /* top: 372px; */
    }
    .float-bnr {
        bottom: -70px;
    }
    
}
@media screen and (max-width: 520px) {
    .scrolldown {
        bottom: 18px;
    }
    .kv {
        /* background: url(../../assets/img/kv_sp.png) top no-repeat;
        padding-top: calc(1720 / 3200 * 100%); */
        width: 100%;
        /* height: 480px; */
        /* background-size: cover; */
            font-size: 12px;
    }
    .float-bnr {

    }
}

.slick-dots {
    bottom: 7px;
}

.slick-dotted.slick-slider {
    margin-bottom: 0px;
}

/*===================================
section01
===================================*/
.section01 {
    background: url(../../assets/img/bg.jpg);
    position: relative;
}

.section01 .container {
    padding: 100px 40px;
    position: relative;
}

.section01__bg {
    position: absolute;
    width: 25%;
    top: 300px;
    right: 20px;
    z-index: 0;
}

.section01__bnr {
    margin: 0 auto 80px;
    padding: 0 20px;
    display: block;
    z-index: 1;
}

.section01__bnr a {
    display: block;
}

.section01__bnr a:hover {
    opacity: 0.6;
}

.section01__title {
    padding-bottom: 15px;
    z-index: 1;
    /* border-bottom: 3px solid #fff; */
}

.section01__title img {
    width: 70%;
}

.section01__titleSub {
    padding: 20px 0 40px;
    font-weight: bold;
    letter-spacing: 0.1em;
    font-size: 22px;
    line-height: 2.4rem;
    z-index: 1;
}

.section01__text {
    font-size: 16px;
    line-height: 1.8em;
    font-weight: bold;
    color: #595757;
    z-index: 1;
}

@media screen and (max-width: 560px) {
    .section01 .container {
        padding: 40px 20px;
    }
    .section01__title img {
        width: 100%;
    }
    .section01__bnr {
        margin: 0 auto 30px;
        padding: 0;
    }
}

/*===================================
section02
===================================*/
.section02__btnWrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 5%;
    margin: 30px 0;
}
.section2__btn {
    width: 20%;
}

.section02__title {
    text-align: center;
}

.section02__title img {
    width: 85%;
}

ul.modal-menu {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.section2__btn a:hover .btn-off {
    display: none;
}

.section2__btn a:hover .btn-on {
    display: block;
}

ul.modal-menu li {
    line-height: 2rem;
}

ul.modal-menu li a {
    text-decoration: none;
}

ul.modal-menu li a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 560px) {
    .section02__title img {
        width: 100%;
    }
    .section2__btn {
        width: 40%;
        margin-bottom: 15px;
    }
}

/*===================================
section03
===================================*/
.section03 {
    background: url(../../assets/img/bg.jpg);
}

.section03__title {
    text-align: center;
    margin: 30px 0;
}

.section03__title img {
    width: 20%;
}

.section03__listWrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.section3__listItem {
    width: 30%;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.section3__listItem h4 {
    font-weight: bold;
    font-size: 18px;
    margin: 5px 0px;
}

.section3__listItem a {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-decoration: none;
    color: #898989;
}

.section3__listItem a:hover {
    color: #000;
}

.section03__listWrap::after {
    display: block;
    content:"";
    width: 30%;
    }

@media screen and (max-width: 560px) {
    .section3__listItem {
        width: 100%;
    }
    .section03__title img {
        width: 40%;
    }
    .kv__contact {
        width: 20%;
    }
}


/*===================================
section04
===================================*/
.section04 {
    position: relative;
    background: #fff;
}

.section04__wrap {
    /* display: flex;
    justify-content: space-between; */
    position: relative;
}

.section04__top {
    display: flex;
    gap: 30px;
    align-items: flex-end;
    position: absolute;
    top: -30px;
}

.section4__left {
    width: 20%;
}

.section4__right {
    width: 75%;
}

.section4__right img {
    width: 80%;
    margin-bottom: 10px;
}

.section4__right p {
    font-weight: bold;
    line-height: 1.6em;
    color: #595757;
    font-size: 18px;
}

.section04__middle {
    margin-top: 140px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.section04__middle a {
    width: 20%;
}

.section04__middle a:hover {
    opacity: 0.6;
}

.section04__middle p {
    margin: 0 10px 0 20px;
    font-weight: bold;
    font-size: 18px;
}

.section04__middle p span {
    color: #595757;
    display: inline-block;
    margin-top: 5px;
    font-size: 14px;
}

.section4__middleImg01 {
    width: 10%;
    /* margin-right: 20px; */
}

.section04__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-top: 160px;
}

.section04__bottom a {
    width: 75%;
}

img.btn-on {
    display: none;
}

.section04__bottom a:hover img.btn-off {
    display: none;
}

.section04__bottom a:hover img.btn-on {
    display: block;
}

.section4__right a:hover .btn-on {
    display: block;
}

.section04__middleLeft {
    display: flex;
    align-items: center;
    width: 80%;
}

@media screen and (max-width: 960px) {
    .section04__top {
        position: relative;
        margin-top: 20px;
        align-items: flex-start;
    }
    .section04__middle {
        margin-top: 28px;
    }
    .section04__middleLeft {
        display: flex;
        align-items: center;
        width: 100%;
    }
    .section4__right img {
        width: 100%;
    }
    .section04__bottom {
        padding-top: 6px;
    }
}

@media screen and (max-width: 520px) {
    .section04__wrap {
        flex-direction: column;
        align-items: center;
    }
    .section04__top {
        align-items: center;
        flex-direction: column;
    }
    .section4__left {
        width: 40%;
    }
    .section4__right {
        width: 100%;
    }
    .section4__right img {
        width: 100%;
    }
    .section04__middle {
        margin-top: 0px;
        flex-wrap: wrap;
        flex-direction: column-reverse;
        gap: 35px;
    }
    .section04__middle p {
        width: 75%;
        font-size: 16px;
        line-height: 1.4rem;
    }
    .section04__middleLeft {
        width: 100%;
    }
    .section4__middleImg01 {
        width: 20%;
    }
    .section04__middle a {
        width: 40%;
    }
    .section04__bottom a {
        width: 100%;
    }
    .section04__middleLeft p a {
        margin-top: 5px;
    }
}

/*===================================
section-form
===================================*/
.section-form {
    background: url(../../assets/img/bg.jpg);
    padding: 80px 0 0;
    position: relative;
}

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

.section-form__title img {
    width: 30%;
    margin-bottom: 50px;
}

.section-form-text {
    text-align: center;
    font-weight: bold;
    color: #595757;
    margin-bottom: 60px;
}

.section-form p {
    line-height: 1.5;
}

form {
    max-width: 760px;
    margin: 0 auto;
    /* padding: 50px; */
    /* padding-top: 80px; */
}

.form-title {
    background-color: #C9BDA6;
    padding: 10px 20px;
    color: #fff;
}

.form-section {
    margin-bottom: 30px;
}

.form-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.form-group {
    padding: 30px 0;
}

.form-group span {
    margin-right: 20px;
    margin-left: 5px;
}

.form-checkboxWrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}
.form-checkboxWrap2 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.form-checkbox.form-flex {
    width: 30%;
}

.form-day-flex {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.form-place {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.form-checkbox {
    /* width: 33%;
    margin-bottom: 20px; */
    display: flex;
    align-items: center;
}

.form-checkboxWrap2 .form-checkbox {
    width: 25%;
}

.form-checkboxWrap2 .form-checkbox-last {
    width: 40%;
}

input.form-textarea {
    width: 100%;
    height: 6rem;
    border: none;
}

.form-section-base {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 40px;
}

.form-titleLeft {
    width: 30%;
    font-weight: bold;
}

.form-titleLeft span {
    color: red;
}

.form-groupRight {
    width: 70%;
}

.form-groupRight input {
    width: 100%;
    height: 2rem;
}

.form-groupRight .form-text {
    border: none;
    height: 3rem;
}

.form-section-privacy {
    margin: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}

.form-block a {
    font-weight: normal;
    color: #171C61;
}

.form-block a:hover {
    font-weight: bold;
}

.form-group.btn {
    text-align: center;
}

label {
    font-weight: bold;
    letter-spacing: 1px;
}

span.label {
    font-weight: bold;
}

.required {
    color: red;
}
.any {
    background-color: #A5A5A5;
}

.form-text {
    width: 100%;
}

.form-flex {
    display: flex;
    align-items: center;
}

.form-control {
    border: none;
    height: 2rem;
}

.form-day-flex-right {
    width: 80%;
    display: flex;
    align-items: center;
}

span.midashi {
    display: inline-block;
    width: 15%;
}

.form-day {
    width: 50%;
}

.form-time {
    width: 50%;
}

span.time {
    margin-right: 5px;
}

.form-group textarea {
    height: 240px;
}

.form-control:focus {
    outline: 0;
    box-shadow: 0 0 0 2px #CD6829 inset;
}

.form-control2 {

}

.form-control2:focus {
    outline: 0;
    box-shadow: 0 0 0 2px #CD6829 inset;
}

input::placeholder,
textarea::placeholder {
	color: #CCCCCC;
}

.privacy-text {
    /* width: 100%; ブロックの幅 */
    height: 240px; /*ブロックの高さ*/
    overflow: scroll; /*スクロール*/
    border: 1px solid #B3B3B3;
    padding: 16px;
    margin-bottom: 30px;

}

span.form-checkbox-text {
    font-weight: normal;
}

a.link-privacy {
    /* font-weight: normal; */
    padding-right: 10px;
    text-underline-offset: 6px;
}

.label-privacy {
    text-align: center;
    margin-top: 20px;
    cursor: pointer;
    margin: 0 auto;
}

.form-checkbox-text {
    /* チェックボックスとテキストの上下を中央に */
    align-items: center;
    display: flex;
}

.label-privacy input {
    display: none;
}

.label-privacy input + .form-checkbox-text::before {
    background-image: url("../img/form__checkbox_empty.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    height: 30px;
    position: relative;
    width: 30px;
    margin-right: 10px;
}

.label-privacy input:checked + .form-checkbox-text::before {
    background-image: url("../img/form__checkbox_checked.png");
}

.form-submit-button {
    display: inline-block;
    width: 100%;
    padding: 8px;
    border: none;
    border-radius: 4px;
    background-color: #333;
    color: #fff;
    font-weight: bold;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    border: 2px solid transparent;
}

.form-submit-button:hover {
    background-color: #000;
}

.form-submit-button:focus {
    outline: 0;
    background-color: #000;
    border: 2px solid rgb(33, 150, 243);
}

input.form-send {
    width: 40%;
    margin: 0 auto;
    background-color: #171C61;
    background-size: 100%;
    color: #fff;
    font-weight: bold;
    border: none;
    height: 50px;
}

input.form-send:hover {
    backgound-color: #eee;
    opacity: 0.9;
}

.consent {
    display: none;
}

.pageTop {
    width: 140px;
    height: 70px;
    bottom: 0;
    margin: 0 auto;
    text-align: center;
}
.pageTop a {
    display: block;
    text-decoration: none;
}
.pageTop:hover {
    opacity: 0.85;
}

.section-form-thanks h3 {
    font-weight: bold;
    margin-bottom: 30px;
    font-size: 22px;
    color: #595757;
}

.section-form-thanks .thanks_text {
    margin-bottom: 30px;
    font-size: 14px;
}

.section-form.section-form-confirm {
    padding: 80px 0 0;
}

.error_messe {
    margin-top: 30px;
    color: red;
}

.formbottom {
	text-align: center;
}

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

.btns{
	display: inline-block;
    vertical-align: middle;
    margin: 0 10px;
    padding: 10px 25px;
    color: #fff;
    font-weight: bold;
    letter-spacing: 0.5pt;
    text-decoration: none;
    background-color: #171C61;
    cursor: pointer;
    transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    border: none;
} 

.btns a{
    color: #fff;
    text-decoration: none;
}

.btns a:hover{
    opacity: 0.9;
}

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

table.formTable {
    width: 100%;
    margin-bottom: 30px;
}

table.formTable tr {
    height: 2rem;
}
table.formTable th, table.formTable td {
    border-top: 1px solid #ddd;
    padding: 1rem;
}

.section-form.section-form-confirm p {
    text-align: center;
    margin-bottom: 60px;
}

.section-form.section-form-confirm .container {
    margin-bottom: 80px;
}

table.formTable th {
    width: 12rem;
}

.form-place span.midashi {
    margin-top: 0px;
}

.form-group.form-checkboxWrap span {
    font-size: 14px;
}

.form-text.form-checkbox-flex p {
    margin-top: 20px;
    font-size: 14px;
}


@media screen and (max-width: 960px) {
    input.form-send {
        width: 80%;
    }
    .section-form__title img {
        width: 50%;
    }
    .form-checkbox {
        width: 50%;
    }
    .form-checkboxWrap2 {
        flex-direction: column;
    }
    .form-checkboxWrap2 .form-checkbox,.form-checkboxWrap2 .form-checkbox-last {
        width: 100%;
    }
    span.midashi {
        display: block;
        margin-bottom: 10px;
        margin-top: 10px;
    }
    span.time {
        display: block;
        margin-top: 20px;
        margin-bottom: 15px;
    }
    .form-day-flex {
        display: flex;
        align-items: flex-start;
        flex-wrap: wrap;
    }
    .form-day-flex-right {
        width: 80%;
        display: flex;
        align-items: center;
        flex-direction: column;
    }
    .form-day {
        width: 100%;
    }
    
    .form-time {
        width: 100%;
    }

    .form-place span.midashi {
        margin-bottom: 15px;
        width: 100%;
    }
    .form-checkbox.form-flex {
        width: 50%;
    }
}

@media screen and (max-width: 520px) {
    .section-form__title img {
        width: 85%;
    }
    a.link-privacy {
        width: 100%;
    }
    span.form-checkbox-text span {
        display: none;
    }
    .consent {
        display: block;
        font-weight: normal;
    }
    span.form-checkbox-text {
        font-weight: normal;
        margin-bottom: 10px;
    }
    .form-checkbox {
        width: 100%;
    }
    .form-section-base {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        margin-bottom: 20px;
    }
    .form-titleLeft {
        width: 100%;
        margin-bottom: 10px;
        font-weight: bold;
    }
    .form-groupRight {
        width: 100%;
    }
    .form-day-flex-right {
        margin-top: 15px;
    }
    span.midashi {
        width: 50%;
    }
    .form-day-flex-right {
        width: 100%;
    }
    table.formTable th {
        width: 5rem;
    }
}

/*===================================
footer
===================================*/
.footer {
    background: url(../../assets/img/bg.jpg);
}

.footer a:hover {
    opacity: 0.6;
}

.footer__wrap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10%;
    padding: 100px 80px;
}

.footer__item.footer__item:nth-child(odd) {
    width: 30%;
}

.footer__item.footer__item:nth-child(even) {
    width: 20%;
}

.footer__item.footer__item-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.footer__item01 {
    width: 60%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    justify-content: flex-start;
}
.footer__item02 {
    font-size: 14px;
    font-weight: bold;
    color: #898989;
    text-decoration: none;
    width: 36%;
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
    gap: 3px;
}

.footer__item01-title img {

}

.footer__item01-sns img {
    width: 30px;
}

p.footer__item02-title {
    width: 30%;
    margin-top: 3px;
}

p.footer__item02-address {
    font-size: 14px;
    margin-top: 3px;
    line-height: 1.2rem;
}


.copyright {
    font-size: 10px;
    text-align: center;
    padding: 10px;
    line-height: 1.2rem;
    color: #898989;
}

.img_mail {
    width: 180px;
    display: block;
    margin: 0 auto;
    padding-top: 2px;
}

.footer__sns {
    display: flex;
    gap: 24px;
}

.footer__item01-sns:hover {
    opacity: 0.6;
}

@media screen and (max-width: 960px) {
    footer.footer {
        height: 100%;
    }
    footer .container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding-top: 30px;
        height: 100%;
    }
    .footer__item01 {
        width: 85%;
        flex-direction: column;
    }
    .footer__item02 {
        width: 85%;
        align-content: flex-start;
        align-items: center;
        justify-content: center;
    }
    .footer__item02-title {
        width: 20%;
        text-align: center;
    }
    .footer-sns {
        width: 60%;
    }
    .footer-title, .footer-empty {
        width: 50%;
        margin: 0 auto;
    }
    .footer-title img {
        width: 100%;
    }
    p.footer__item02-address {
        text-align: center;
    }
}

@media screen and (max-width: 520px) {
    .footer-sns img {
        width: 100%;
    }
    .footer__wrap {
        padding: 20px;
    }
    .footer__item.footer__item:nth-child(odd){
        width: 80%;
    }
    .footer__item.footer__item:nth-child(even){
        width: 60%;
    }
}


/*==================================================
スライダーのためのcss
===================================*/
.slider img {
    width:100%;/*スライダー内の画像を横幅100%に*/
    height:auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
    margin: 0 10px; /*スライド左右の余白調整*/
}

/* .section-gallery .slider li img {
    width: 400px;
} */
    .slider .slick-slide {
        width: 400px;
        height: 286px;
        margin: 0 10px;
        position: relative;
        overflow: hidden;
    }
    .slider .slick-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

@media screen and (max-width: 520px) {
    .slider img {
        /* width: 400px; */
    }
    .slider .slick-slide {
        width: 200px;
        height: 143px;
    }
    .slick-track {
        /* width: 3000px; */
    }
}


/*==================================================
page list
===================================*/
#list .kv__title {
    position: absolute;
    top: 50%;
    left: 50%;
    font-weight: bold;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

@media screen and (max-width: 520px) {
    #list .kv__title {
        font-size: 1rem;
    }
}

/*==================================================
.section__intro
===================================*/

.section__introTop {
    display: flex;
    margin-bottom: 20px;
}
.section__introTop-left {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 5px;
}
img.section__introTop-left-no {
    width: 30%;
}
.section__introTop-left h2 {
    font-weight: bold;
    font-size: 1.4rem;
}
.section__introTop-left-mark img {
    width: 20%;
}
.section__introTop-left-area {
    display: flex;
    position: relative;
}
.area-title {
    display: inline;
    height: 1rem;
    font-size: 0.8rem;
    font-weight: bold;
    width: 3rem;
    text-align: center;
    margin-right: 15px;
    padding: 4px 8px;
    border: 1px solid #c8bca5;
    margin-bottom: 10px;
}
.area {
    font-size: 0.8rem;
    font-weight: bold;
    line-height: 1.4;
}

/* .section__introTop-left-area p {
    font-size: 0.8rem;
    font-weight: bold;
}
.section__introTop-left p span {
    margin-right: 15px;
    padding: 4px 8px;
    border: 1px solid #c8bca5;
} */
.section__introBottom h3 {
    font-weight: bold;
    font-size: 1.3rem;
    margin-bottom: 15px;
}
.section__introBottom p {
    font-size: 14px;
    line-height: 1.4em;
}
.section__introTop-right {
    width: 55%;
}

@media screen and (max-width: 960px) {
    .section__introTop {
        flex-direction: column;
    }
    .section__introTop-left,.section__introTop-right {
        width: 100%;
    }
    .section__introTop-left-area {
        flex-direction: column;
    }

}

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



/*==================================================
.section__interview
===================================*/
.section__interview {
    background: url(../../assets/img/bg.jpg);
    position: relative;
}

.section__interview .container {
    padding-bottom: 120px;
}

.section__interviewA,.section__interviewB,.section__interviewC,.section__interviewD {
    margin-bottom: 50px;
}

.section__interviewD {
    display: flex;
    flex-direction: row-reverse;
    gap: 30px;
    justify-content: flex-end;
}

.section__interviewA-PhotoArea,.section__interviewB-PhotoArea {
    position: relative;
    margin-bottom: 50px;
}

.section__interviewC-PhotoArea,.section__interviewD-PhotoArea {
    position: relative;
}

.section__interviewD-PhotoArea {
    width: 45%;
}

.section__interviewC-PhotoArea {
    text-align: right;
}

img.section__interviewC-Photo {
    width: 50%;
}

.section__interviewA-PhotoArea h3,.section__interviewB-PhotoArea h3,.section__interviewC-PhotoArea h3,.section__interviewD-PhotoArea h3 {
    font-size: 2rem;
    /* width: 16rem; */
    background: #fff;
    /* padding: 10px; */
    font-weight: bold;
    line-height: 1.3;
}

h3.section__interviewC-title {
    position: absolute;
    top: 30%;
    right: 45%;
    /* width: 24rem; */
    text-align: left;
    font-size: 26px;
}

.section__interviewA-PhotoArea h3 {
    position: absolute;
    bottom: -10px;
    left: 5%;
}

.section__interviewB-PhotoArea h3 {
    position: absolute;
    bottom: -10px;
    right: 5%;
}


.section__interviewA-text,.section__interviewB-text,.section__interviewC-text,.section__interviewD-text,.section__interviewE-text {
    font-size: 16px;
    line-height: 1.6rem;
}

p.section__interviewD-text {
    width: 47%;
}

@media screen and (max-width: 520px) {
    img.section__interviewC-Photo {
        width: 100%;
    }
    h3.section__interviewC-title {
        font-size: 1.2rem;
        top: unset;
        right: unset;
    }
    .section__interviewD {
        flex-direction: column;
        align-items: center;
    }
    .section__interviewD-PhotoArea {
        width: 100%;
    }
    p.section__interviewD-text {
        width: 100%;
    }
    .section__interviewA-PhotoArea, .section__interviewB-PhotoArea {
        margin-bottom: 20px;
    }
    .section__interviewA-PhotoArea h3 {
        position: relative;
        left: 0;
    }
    .section__interviewB-PhotoArea h3 {
        position: relative;
        left: 0;
    }
    .section__interviewA-PhotoArea h3, .section__interviewB-PhotoArea h3, .section__interviewC-PhotoArea h3, .section__interviewD-PhotoArea h3 {
        font-size: 1.2rem;
        padding: 10px;
    }
    h3.section__interviewC-title {
        position: relative;
    }
}

/*==================================================
.section__company
===================================*/
.section__companyInner {
    display: flex;
    gap: 30px;
}

.section__company-photo, .section__company-info{
    width: 50%;
}

.section__company-info h3 {
    font-weight: bold;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.section__company-info p {
    font-size: 14px;
    line-height: 1.4rem;
    margin-bottom: 15px;
}

.section__company-sns {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
}

.section__company-sns a {
    width: 10%;
}

.section__company-contact a:hover .btn-off {
    display: none;
}

.section__company-contact a:hover .btn-on {
    display: block;
}

.section-form-bnr {
    max-width: 760px;
    margin: 0 auto 50px;
}

@media screen and (max-width: 520px) {
    .section__companyInner {
        flex-direction: column;
        align-items: center;
    }
    .section__company-photo, .section__company-info {
        width: 100%;
    }
    .section__company-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}




.section__privacy {
    background: url(../../assets/img/bg.jpg);
    position: relative;
}

h2.section__privacy-title {
    width: 30%;
    /* text-align: center; */
    margin: 0 auto 50px;
}

h3.section__privacy-h3 {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1.2rem;
    line-height: 1.4;
}

p.section__privacy-text {
    line-height: 1.4rem;
    margin-bottom: 50px;
}

@media screen and (max-width: 520px) {
    h2.section__privacy-title {
        width: 80%;
    }
}


/*===================================
リストページ
===================================*/