@charset "UTF-8";

/*=============================================
 * body
 *=============================================*/
body {
   background: #fff;
   color: #020C42;
   font-family: "Zen Old Mincho", serif;
   font-weight: 400;
   font-size: 17px;
   line-height: 32px;
   letter-spacing: 0;
   min-width: inherit;
   min-height: inherit;
   max-height: 100%;
   position: relative;
}

@media screen and (max-width: 767px) {
   body {
      font-size: 13px;
      line-height: 24px;
   }
}

/*=============================================
 * <main>
 *=============================================*/
main {
   clear: both;
   width: 100%;
   box-sizing: border-box;
   position: relative;
   margin: 0;
   padding: 0;
}

.timetable {
   width: 100%;
   table-layout: fixed;
}

.timetable th,
.timetable td {
   text-align: center;
   vertical-align: middle;
   border: 3px solid #fff;
   height: 40px;
   color: #020C42;
}

.timetable thead th {
   font-weight: 700;
}

.timetable thead th+th {
   width: 44px;
   background-color: #0E3480;
   color: #fff;
}

.timetable thead th:first-child {
   letter-spacing: 0.8em;
}

.timetable tbody th {
   background-color: #0D3580;
   color: #fff;
}

.timetable tbody td {
   background-color: #E6F7FF;
}

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

   .timetable th,
   .timetable td {
      height: 25px;
      border-width: 2px;
   }

   .timetable thead th+th {
      width: 30px;
   }

   .timetable thead th:first-child {
      letter-spacing: 0.7em;
   }
}

/*=============================================
 * <header>
 *=============================================*/
header {
   width: 100%;
   position: sticky;
   top: 0;
   left: 0;
   z-index: 100;
   box-sizing: border-box;
   padding: 0 100px;
   transition: all 0.3s;
}

header>.wrap {
   display: flex;
   align-items: center;
   height: 80px;
   padding-left: 0;
}

.header__logo {
   flex: 1 0 0;
   transition: all 0.3s;
   align-self: flex-end;
}

.header__logo a {
   display: block;
   width: 200px;
}

.header__btn {
   display: flex;
   gap: 20px;
   transition: all 0.3s;
}

.header__btn img {
   max-height: 80px;
}

.hamburger {
   position: fixed;
   top: 0;
   right: 0;
}

.navbar {
   display: grid;
   width: 100%;
   height: 100vh;
   background-color: #fff;
   color: #020C42;
   position: fixed;
   top: 0;
   left: 0;
   padding: 120px 0;
   opacity: 0;
   visibility: hidden;
   transition: all 0.3s linear;
   box-sizing: border-box;
   z-index: -1;
   overflow-y: auto;
}

.navbar:before {
   content: '';
   width: 50%;
   height: 100%;
   background: url("../img/common/navbar-bg.jpg") no-repeat center top/cover;
   position: fixed;
   top: 0;
   left: 0;
}

.navbar .wrap {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 100px;
   margin: auto;
   padding: 0;
}

.navbar__nav {
   display: flex;
   flex-direction: column;
   gap: 40px;
}

.navbar__nav a {
   display: block;
   padding-left: 32px;
   position: relative;
}

.navbar__nav a:before {
   content: '';
   width: 11px;
   height: 12px;
   background: url("../img/common/icon.png") no-repeat center top/cover;
   position: absolute;
   top: 19px;
   left: 0;
}

.navbar__nav a span {
   display: block;
   font-weight: 500;
   font-size: 17px;
   line-height: 20px;
}

.navbar__nav a:hover,
.navbar__nav a.current {
   color: #FF5758;
   opacity: 1;
}

.navbar__gmap {
   width: 100%;
   height: 280px;
}

.navbar__gmap iframe {
   display: block;
   width: 100%;
   height: 100%;
}

.navbar__txt {
   line-height: 28px;
   padding-top: 40px;
}

.navbar__tel {
   font-weight: 500;
   font-size: 24px;
   letter-spacing: 0.1em;
   line-height: 40px;
}

.navbar__bnr {
   padding-top: 35px;
}

.navbar__bnr .line a {
   display: block;
   text-align: center;
   background-color: #03C755;
}

.navbar__bnr .line a img {
   max-height: 80px;
}

.navbar__table {
   margin-top: 30px;
}

.navbar__note {
   font-size: 15px;
   line-height: 22px;
   color: #707070;
   text-indent: -15px;
   padding: 10px 0 0 15px;
}

.navOpen .navbar {
   opacity: 1;
   visibility: visible;
}

.navOpen .navbar__right {
   transform: translateX(0);
}

.navOpen .header__btn {
   opacity: 0;
   visibility: hidden;
}

body.home header {
   position: fixed;
}

body.home header .header__btn {
   display: none;
}

@media screen and (max-width: 1200px) {
   .navbar .wrap {
      gap: 40px;
   }
}

@media screen and (max-width: 1023px) {
   header {
      padding: 0 80px 0 20px;
   }

   header>.wrap {
      max-width: 100%;
   }

   .header__btn {
      flex-direction: row-reverse;
      gap: 0;
   }

   .navbar {
      padding: 110px 20px;
   }

   .navbar:before {
      width: 100%;
   }

   .navbar .wrap {
      grid-template-columns: 1fr;
      max-width: 100%;
   }

   .navbar__gmap,
   .navbar__txt,
   .navbar__tel,
   .navbar__table,
   .navbar__note {
      display: none;
   }

   body.home header .header__btn {
      display: flex;
   }
}

@media screen and (max-width: 767px) {
   header {
      padding-right: 60px;
   }

   header>.wrap {
      height: 60px;
      padding: 0;
   }

   .header__logo a {
      width: 142px;
   }

   .header__btn img {
      max-height: 60px;
   }

   .navbar__nav {
      gap: 20px;
   }

   .navbar__nav a {
      display: flex;
      flex-direction: column-reverse;
      font-size: 20px;
      line-height: 30px;
      padding-left: 15px;
   }

   .navbar__nav a:before {
      width: 7px;
      height: 8px;
      top: 4px;
   }

   .navbar__nav a span {
      font-size: 12px;
      line-height: 16px;
      padding-bottom: 4px;
   }

   .navbar__bnr {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      padding-top: 0;
   }

   .navbar__bnr .line a img {
      max-height: inherit;
   }
}

/*=============================================
 * <footer>
 *=============================================*/
footer {
   padding-top: 120px;
}

footer .wrap {
   display: flex;
   justify-content: space-between;
   align-items: flex-end;
   gap: 20px;
}

footer .col {
   width: 546px;
}

footer .logo {
   width: 224px;
}

footer .txt {
   line-height: 28px;
   padding-top: 40px;
}

footer .tel {
   font-weight: 500;
   font-size: 24px;
   letter-spacing: 0.1em;
   line-height: 40px;
}

footer .bnr {
   padding-top: 20px;
}

footer .bnr .line a {
   display: block;
   width: 100%;
   text-align: center;
   background-color: #03C755;
}

footer .bnr .line a img {
   max-height: 80px;
}

footer table {
   margin-top: 50px;
}

footer .note {
   font-size: 15px;
   line-height: 22px;
   color: #707070;
   text-indent: -15px;
   padding: 22px 0 0 15px;
}

footer .gmap {
   width: 475px;
   height: 395px;
}

footer .gmap iframe {
   display: block;
   width: 100%;
   height: 100%;
}

footer address {
   display: flex;
   justify-content: center;
   align-items: flex-end;
   width: 100%;
   height: 400px;
   background: url("../img/common/footer-bg.jpg") no-repeat center/cover;
   margin-top: 60px;
   padding: 30px;
   box-sizing: border-box;
}

@media screen and (max-width: 1023px) {
   footer .wrap {
      flex-direction: column;
      align-items: center;
      gap: 50px;
   }

   footer .gmap {
      width: 100%;
   }
}

@media screen and (max-width: 767px) {
   footer {
      padding-top: 60px;
   }

   footer .wrap {
      gap: 40px;
      padding-left: 20px;
   }

   footer .col {
      width: 100%;
   }

   footer .logo {
      width: 187px;
   }

   footer .txt {
      line-height: 21px;
      padding-top: 30px;
   }

   footer .tel {
      font-size: 20px;
      line-height: 30px;
      padding-top: 10px;
   }

   footer .bnr {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      padding-top: 30px;
   }

   footer table {
      margin-top: 30px;
   }

   footer .note {
      font-size: 12px;
      line-height: 20px;
      text-indent: -12px;
      padding: 15px 0 0 15px;
   }

   footer .gmap {
      height: 260px;
   }

   footer address {
      height: 200px;
      background-image: url("../img/common/footer-bg_sp.jpg");
      font-size: 12px;
      line-height: 17px;
      margin-top: 80px;
      padding: 20px 0;
   }
}

/* -- -- */
.ft-btn-fixed {
   opacity: 1;
   visibility: visible;
   position: fixed;
   z-index: 9;
   transition: all 0.3s;
}

@media screen and (max-width: 1023px) {
   .ft-btn-fixed {
      display: none;
   }
}

@media screen and (min-width: 768px) {
   .ft-btn-fixed {
      top: 50%;
      right: 0;
      transform: translateY(-50%);
   }

   .ft-btn-fixed ul {
      display: flex;
      flex-direction: column;
      gap: 20px;
      width: 60px;
      padding-top: 80px;
   }
}

@media screen and (min-width: 768px) and (min-height: 700px) {
   .ft-btn-fixed ul {
      width: 80px;
   }
}

/*=============================================
 * <section>
 *=============================================*/
#kv {
   padding: 135px 0;
}

.kv-ttl {
   position: relative;
   left: -25px;
   padding-left: 25px;
}

.kv-ttl .en {
   display: block;
   font-weight: 500;
   font-size: 20px;
   line-height: 27px;
   text-transform: capitalize;
   padding-bottom: 10px;
}

.kv-ttl .en:before {
   content: '';
   width: 15px;
   height: 13px;
   background-color: #FF5758;
   clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
   position: absolute;
   top: 6px;
   left: 0;
   transform: rotate(90deg);
}

.kv-photo {
   width: calc(50% + 515px);
   padding-top: 23.5%;
   margin-top: 50px;
   margin-left: auto;
   position: relative;
}

.kv-photo img {
   position: absolute;
   top: 0;
   left: 0;
}

@media screen and (max-width: 1200px) {
   .kv-photo {
      width: calc(50% + 455px);
   }
}

@media screen and (max-width: 1023px) {
   .kv-photo {
      width: calc(50% + 335px);
   }
}

@media screen and (max-width: 767px) {
   #kv {
      padding: 150px 0 70px;
   }

   .kv-ttl {
      font-size: 30px;
      line-height: 44px;
      left: -28px;
      padding-left: 28px;
   }

   .kv-ttl .en {
      font-size: 14px;
      line-height: 19px;
      padding-bottom: 3px;
   }

   .kv-ttl .en:before {
      width: 10px;
      height: 9px;
      left: 10px;
   }

   .kv-photo {
      width: calc(100% - 28px);
      height: 64vw;
      margin-top: 30px;
      padding-top: 0;
   }
}

/* -- --*/
.breadcrumbs {
   font-weight: 400;
   font-size: 14px;
   line-height: 21px;
   padding: 10px 0 120px;
}

.breadcrumbs .wrap {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
}

.breadcrumbs a.home {
   display: block;
   background: url("../img/common/icon-home.svg") no-repeat center left/16px auto;
   padding-left: 20px;
}

.breadcrumbs span {
   word-break: break-all;
}

.breadcrumbs a:hover {
   text-decoration: underline;
}

@media screen and (max-width: 1023px) {
   .breadcrumbs {
      font-size: 13px;
      line-height: 20px;
      overflow-x: auto;
      box-sizing: border-box;
      padding: 10px 20px;
      margin-bottom: 50px;
   }

   .breadcrumbs .wrap {
      gap: 10px;
      width: max-content;
      max-width: inherit;
      background-color: transparent;
      margin: 0;
      padding: 0;
   }

   .breadcrumbs .wrap>span {
      position: relative;
      top: 1px;
   }
}

/* -- --*/
.filter-gray {
   filter: grayscale(100%);
   cursor: pointer;
   transition: all 0.3s;
}

.filter-gray:hover {
   filter: grayscale(0);
}

/*=============================================
 * 404
 *=============================================*/
#content-404 h2 {
   background-repeat: no-repeat;
   background-position: center bottom;
   background-size: auto 10px;
   padding-bottom: 30px;
}

#content-404 .txt {
   padding-top: 40px;
}

#content-404 .button {
   padding-top: 60px;
}

@media screen and (max-width: 767px) {
   #content-404 .txt {
      text-align: justify;
   }

   #content-404 .button {
      padding-top: 40px;
   }
}

/*=============================================
 * Custom
*=============================================*/
/* -- heading -- */
.h2 {
   font-weight: 700;
   font-size: 30px;
   line-height: 44px;
   position: relative;
   left: -25px;
   padding-left: 25px;
}

.h2 .en {
   display: block;
   font-family: "Inter", sans-serif;
   font-weight: 500;
   font-size: 17px;
   letter-spacing: 0.1em;
   line-height: 22px;
   padding-bottom: 10px;
}

.h2 .en:before {
   content: '';
   width: 12px;
   height: 11px;
   background-color: #FF5758;
   clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
   position: absolute;
   top: 6px;
   left: 0;
   transform: rotate(90deg);
}

.h-18 {
   font-weight: 700;
   font-size: 18px;
   line-height: 26px;
}

.h-20 {
   font-weight: 700;
   font-size: 20px;
   line-height: 30px;
}

.h-22 {
   font-weight: 700;
   font-size: 22px;
   line-height: 32px;
}

.h-24 {
   font-weight: 700;
   font-size: 24px;
   line-height: 35px;
}

.h-25 {
   font-weight: 700;
   font-size: 25px;
   line-height: 35px;
}

.h-26 {
   font-weight: 700;
   font-size: 26px;
   line-height: 36px;
}

.h-28 {
   font-weight: 700;
   font-size: 28px;
   line-height: 40px;
}

.h-30 {
   font-weight: 700;
   font-size: 30px;
   line-height: 44px;
}

.h-32 {
   font-weight: 700;
   font-size: 32px;
   line-height: 46px;
}

.h-34 {
   font-weight: 700;
   font-size: 34px;
   line-height: 49px;
   letter-spacing: 0.05em;
}

.h-36 {
   font-weight: 700;
   font-size: 36px;
   line-height: 52px;
}

@media screen and (max-width: 767px) {
   .h2 {
      font-size: 26px;
      line-height: 37px;
      padding-left: 17px;
      left: -18px;
   }

   .h2 .en {
      font-size: 14px;
      line-height: 19px;
      padding-bottom: 5px;
   }

   .h2 .en:before {
      width: 10px;
      height: 9px;
   }

   .h-18 {
      font-size: 16px;
      line-height: 24px;
   }

   .h-20,
   .h-22 {
      font-size: 18px;
      line-height: 26px;
   }

   .h-24,
   .h-26 {
      font-size: 20px;
      line-height: 32px;
   }

   .h-28,
   .h-30 {
      font-size: 26px;
      line-height: 40px;
   }

   .h-32,
   .h-34 {
      font-size: 22px;
      line-height: 30px;
   }

   .h-36 {
      font-size: 24px;
      line-height: 36px;
   }
}

/* button */
.button {
   position: relative;
}

.button a {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   line-height: 25px;
   position: relative;
   z-index: 1;
}

.button a i {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 70px;
   height: 80px;
   position: relative;
   transition: all 0.3s;
}

.button a i:after {
   content: '';
   width: 100%;
   height: 100%;
   background: url("../img/common/btn-arrow.png") no-repeat center top/100% auto;
   filter: blur(5px);
   position: absolute;
   top: 0;
   left: 0;
   z-index: -1;
}

.button a:hover {
   opacity: 1;
}

.button a:hover i {
   transform: translateX(5px);
}

@media screen and (max-width: 767px) {
   .button a i {
      width: 44px;
      height: 50px;
   }
}

/* -- -- */
.txt-udl {
   text-decoration: underline;
}

a.txt-udl:hover {
   text-decoration: none;
}

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

.txt-j {
   text-align: justify;
}

.txt-r {
   text-align: right;
}

.cl-blue {
   color: #1C66B9;
}

.cl-green {
   color: #515D2C;
}

.cl-green-1 {
   color: #237519;
}

.cl-red {
   color: #D90912;
}

.cl-yellow {
   color: #FFCC00;
}

.cl-brown {
   color: #7C7054;
}

.cl-orange {
   color: #EB5407;
}

.udl {
   background-image: linear-gradient(#FFCC00, #FFCC00);
   background-size: 100% 40%;
   background-repeat: no-repeat;
   background-position: left bottom;
}

.fw-m {
   font-weight: 500;
}

.fw-smb {
   font-weight: 600;
}

.fw-b {
   font-weight: 700;
}

.fw-black {
   font-weight: 900;
}

.bdra-10 {
   border-radius: 10px;
}

.bdra-20 {
   border-radius: 20px;
}

.bdra-30 {
   border-radius: 30px;
}

.img_shadow {
   box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
}

.ovh {
   overflow: hidden;
}

@media screen and (max-width: 767px) {
   .bdra-20 {
      border-radius: 10px;
   }

   .bdra-30 {
      border-radius: 15px;
   }
}

/* -- --*/
.w600 {
   max-width: 600px;
   margin: 0 auto;
   box-sizing: border-box;
}

.w800 {
   max-width: 800px;
   margin: 0 auto;
   box-sizing: border-box;
}

.w900 {
   max-width: 900px;
   margin: 0 auto;
   box-sizing: border-box;
}

.w1000 {
   max-width: 1000px;
   margin: 0 auto;
   box-sizing: border-box;
}

/* -- --*/
.section-space {
   padding: 100px 0;
}

.pt80 {
   padding-top: 80px;
}

.pt120 {
   padding-top: 120px;
}

.pb80 {
   padding-bottom: 80px;
}

.pb120 {
   padding-bottom: 120px;
}

.pb200 {
   padding-bottom: 200px;
}

@media screen and (max-width: 767px) {
   .section-space {
      padding: 50px 0;
   }

   .pt80 {
      padding-top: 40px;
   }

   .pt120 {
      padding-top: 60px;
   }

   .pb80 {
      padding-bottom: 40px;
   }

   .pb120,
   .pb200 {
      padding-bottom: 50px;
   }
}

/* -- --*/
.bg-cl01 {
   background-color: #F9FBF4;
}

.bg-cl02 {
   background-color: #FCF3EC;
}

/* -- -- */
.img-zoom,
.img-zoom figure {
   display: block;
   overflow: hidden;
}

.img-zoom .img,
.img-zoom .img-obj {
   transition: 0.6s ease-in-out;
}

.img-zoom:hover .img,
.img-zoom:hover .img-obj {
   transform: scale(1.07);
}

/* -- --*/
.tb-style {
   position: relative;
}

.tb-style dl {
   display: table;
   width: 100%;
   box-sizing: border-box;
   padding: 24px 30px;
   border-bottom: 1px solid #fff;
}

.tb-style dl:first-child {
   padding-top: 0;
}

.tb-style dl>* {
   display: table-cell;
   vertical-align: top;
}

.tb-style dl dt {
   width: 180px;
}

.tb-style dl dd {
   padding-left: 20px;
}

.tb-style dl dd a:not([href^="tel:"]):hover {
   text-decoration: underline;
}

.tb-style dl dd p {
   padding-bottom: 20px;
}

.tb-style dl dd p:last-child {
   padding-bottom: 0;
}

@media screen and (max-width: 767px) {
   .tb-style {
      line-height: 20px;
   }

   .tb-style dl {
      padding: 20px 10px;
   }

   .tb-style dl dt {
      width: 65px;
   }

   .tb-style dl dd {
      padding-left: 18px;
   }
}

/* -- -- */
.list-qa dl {
   border-bottom: 1px solid #D6DDDF;
   padding: 0 50px 28px 25px;
}

.list-qa dl+dl {
   padding-top: 28px;
}

.list-qa dl dt {
   display: grid;
   grid-template-columns: 35px 1fr 24px;
   align-items: center;
   gap: 20px;
   font-weight: 700;
   font-size: 20px;
   line-height: 30px;
   cursor: pointer;
}

.list-qa dl dt:before {
   content: 'Q';
   display: flex;
   align-items: center;
   justify-content: center;
   background: url("../img/common/icon.png") no-repeat center top/cover;
   width: 35px;
   height: 40px;
   color: #fff;
   font-family: "Inter", sans-serif;
   font-weight: 500;
   font-size: 17px;
   line-height: 1;
}

.list-qa dl dt i {
   display: grid;
   width: 24px;
   height: 24px;
   position: relative;
}

.list-qa dl dt i:before,
.list-qa dl dt i:after {
   content: '';
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   transition: all 0.3s;
}

.list-qa dl dt i:before {
   width: 0;
   height: 100%;
   border-left: 2px solid #020C45;
}

.list-qa dl dt i:after {
   width: 100%;
   height: 0;
   border-top: 2px solid #020C45;
}

.list-qa dl dd {
   display: none;
   padding: 20px 55px 0;
}

.list-qa dl.is-active dt i:before {
   transform: translate(-50%, -50%) rotate(90deg);
}

@media screen and (max-width: 767px) {
   .list-qa dl {
      padding: 0 10px 20px;
   }

   .list-qa dl+dl {
      padding-top: 20px;
   }

   .list-qa dl dt {
      grid-template-columns: 30px 1fr 18px;
      gap: 12px;
      font-size: 13px;
      line-height: 20px;
   }

   .list-qa dl dt:before {
      width: 27px;
      height: 30px;
   }

   .list-qa dl dt i {
      width: 18px;
      height: 18px;
   }

   .list-qa dl dd {
      padding: 20px 0 0 42px;
   }
}

/* -- --*/
.photo-full img {
   width: 100%;
   max-width: inherit;
}

.img-obj {
   width: 100%;
   max-width: inherit;
   height: 100%;
   object-fit: cover;
}

@media screen and (max-width: 767px) {
   .photo-full {
      width: 100%;
      height: 60vw;
   }

   .photo-full img {
      height: 100%;
      object-fit: cover;
   }
}

/* -- -- */
.list-dot {
   font-size: 18px;
   line-height: 26px;
}

.list-dot li {
   position: relative;
   padding-left: 20px;
}

.list-dot li:before {
   content: '';
   width: 9px;
   height: 9px;
   background: #EB5407;
   position: absolute;
   top: 10px;
   left: 0;
   border-radius: 50%;
}

.list-dot li+li {
   margin-top: 8px;
}

@media screen and (max-width: 767px) {
   .list-dot {
      font-size: 14px;
   }

   .list-dot li {
      padding-left: 15px;
   }

   .list-dot li:before {
      top: 9px;
   }

   .list-dot li+li {
      margin-top: 5px;
   }
}

/* -- -- */
.swiper-pagination {
   display: flex;
   justify-content: flex-end;
   gap: 10px;
   position: relative;
   top: auto;
   right: auto;
   bottom: auto;
   left: auto;
   box-sizing: border-box;
}

.swiper-pagination-bullet {
   display: block;
   width: 60px;
   height: 4px;
   background-color: #BEBEBE;
   border-radius: 0;
   margin: 0;
   cursor: pointer;
   transition: all 0.3s;
}

.swiper-pagination-bullet:hover {
   background-color: #FF5758;
   opacity: 1;
}

.swiper-pagination-bullet-active {
   background-color: #FF5758;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
   margin: 0;
}

.swiper-fade .swiper-slide {
   opacity: 0 !important;
}

.swiper-fade .swiper-slide-active {
   opacity: 1 !important;
}

@media screen and (max-width: 767px) {
   .swiper-pagination {
      gap: 8px;
   }

   .swiper-pagination-bullet {
      width: 34px;
      height: 3px;
   }
}

/* -- --*/
.slick-arrow {
   display: flex;
   justify-content: center;
   align-items: center;
   width: 30px;
   height: 30px;
   font-size: 0;
   border: 0;
   position: relative;
   cursor: pointer;
   background: #277455;
   color: #fff;
   border-radius: 50%;
   transition: all 0.3s;
}

.slick-arrow:before {
   font-family: "Font Awesome 6 Free";
   font-weight: 900;
   font-size: 20px;
   line-height: 1;
}

.slick-arrow:hover {
   background-color: #333;
}

.slick-prev:before {
   content: "\f104";
}

.slick-next:before {
   content: "\f105";
}

.slick-dots {
   display: flex;
   justify-content: center;
   gap: 10px;
}

.slick-dots li {
   width: 14px;
   height: 14px;
}

.slick-dots li button {
   display: block;
   width: 100%;
   height: 100%;
   background-color: #fff;
   border: 2px solid #fff;
   border-radius: 50%;
   font-size: 0;
   box-sizing: border-box;
   cursor: pointer;
   transition: all 0.3s;
}

.slick-dots li.slick-active button {
   background-color: #FFCC00;
}

@media screen and (max-width: 767px) {
   .slick-arrow {
      width: 20px;
      height: 20px;
   }

   .slick-arrow:before {
      font-size: 12px;
   }

   .slick-dots li {
      width: 10px;
      height: 10px;
   }
}

@media screen and (min-width: 1080px) {
   .slick-dots li button:hover {
      background-color: #FFCC00;
   }
}

/*=============================================*
* お問い合わせ
*=============================================*/
.wpcf7 {
   position: relative;
}

.wpcf7 .select {
   position: relative;
}

.wpcf7 .select {
   display: flex;
   align-items: flex-start;
   width: 100%;
   max-width: 206px;
   position: relative;
}

.wpcf7 .select .wpcf7-form-control-wrap {
   display: block;
   flex: 1;
   position: relative;
}

.wpcf7 .select .wpcf7-form-control-wrap::after {
   content: '';
   width: 0;
   height: 0;
   border-width: 6px 5px 0 5px;
   border-color: #020C45 transparent transparent transparent;
   border-style: solid;
   position: absolute;
   top: 23px;
   right: 16px;
}

.wpcf7 .select select {
   display: block;
   width: 100%;
   height: 100%;
   -webkit-appearance: none;
   -moz-appearance: none;
   outline: 0;
   box-shadow: none;
   background-color: #fff;
   border: 0;
   border-radius: 0;
   font-weight: 700;
   line-height: 30px;
   padding: 10px 50px 10px 20px;
   cursor: pointer;
}

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

.wpcf7 input:not([type="checkbox"], [type="radio"]),
.wpcf7 textarea {
   display: block;
   width: 100%;
   background-color: #fff;
   border: 0;
   border-radius: 0px;
   outline: none;
   -webkit-appearance: none;
   -moz-appearance: none;
   box-sizing: border-box;
   padding: 10px 20px;
   font-weight: 700;
   line-height: 30px;
}

.wpcf7 textarea {
   height: 290px;
   resize: vertical;
}

.wpcf7 input[type="date"] {
   padding-right: 40px;
}

.wpcf7 input[type="date"]::-webkit-calendar-picker-indicator {
   width: 100%;
   height: 100%;
   cursor: pointer;
   background-position: top 22px right 15px;
   background-size: 18px auto;
   position: absolute;
   top: 0;
   left: 0;
}

.wpcf7 ::-webkit-input-placeholder {
   color: #BCBEBF;
   font-weight: 700;
}

.wpcf7 ::-moz-placeholder {
   color: #BCBEBF;
   font-weight: 700;
}

.wpcf7 :-ms-input-placeholder {
   color: #BCBEBF;
   font-weight: 700;
}

.wpcf7 :-moz-placeholder {
   color: #BCBEBF;
   font-weight: 700;
}

.wpcf7-checkbox {
   display: flex;
   flex-wrap: wrap;
   gap: 40px;
   line-height: 28px;
}

.wpcf7-checkbox .wpcf7-list-item {
   display: block;
   margin-left: 0;
   cursor: pointer;
}

.wpcf7-checkbox input {
   display: none;
}

.wpcf7-checkbox .wpcf7-list-item-label {
   display: inline-grid;
   grid-template-columns: 28px 1fr;
   align-items: flex-start;
   gap: 10px;
   cursor: pointer;
}

.wpcf7-checkbox .wpcf7-list-item-label:before,
.wpcf7-checkbox .wpcf7-list-item-label:after {
   content: '';
   grid-area: 1/1;
   margin: auto;
}

.wpcf7-checkbox .wpcf7-list-item-label:before {
   width: 28px;
   height: 28px;
   background-color: #fff;
}

.wpcf7-checkbox .wpcf7-list-item-label:after {
   width: 33px;
   height: 28px;
   background: url("../img/common/icon-checked.png") no-repeat center top/cover;
   display: none;
}

.wpcf7-checkbox input:checked+.wpcf7-list-item-label:after {
   display: block;
}

.wpcf7-radio {
   display: flex;
   flex-wrap: wrap;
   gap: 40px;
   line-height: 28px;
}

.wpcf7-radio .wpcf7-list-item {
   display: block;
   margin-left: 0;
   cursor: pointer;
}

.wpcf7-radio input {
   display: none;
}

.wpcf7-radio .wpcf7-list-item-label {
   display: inline-grid;
   grid-template-columns: 28px 1fr;
   align-items: flex-start;
   gap: 10px;
   cursor: pointer;
}

.wpcf7-radio .wpcf7-list-item-label:before,
.wpcf7-radio .wpcf7-list-item-label:after {
   content: '';
   grid-area: 1/1;
   border-radius: 50%;
   margin: auto;
}

.wpcf7-radio .wpcf7-list-item-label:before {
   width: 28px;
   height: 28px;
   background-color: #fff;
}

.wpcf7-radio .wpcf7-list-item-label:after {
   width: 16px;
   height: 16px;
   background-color: #020C45;
   display: none;
}

.wpcf7-radio input:checked+.wpcf7-list-item-label:after {
   display: block;
}

.wpcf7 .wpcf7-not-valid-tip {
   font-size: 13px;
   line-height: 22px;
   color: #E50012;
}

@media screen and (max-width: 767px) {
   .wpcf7 .select {
      max-width: 184px;
   }

   .wpcf7 .select .wpcf7-form-control-wrap::after {
      top: 20px;
   }

   .wpcf7 .select select {
      padding: 7px 40px 7px 20px;
   }

   .wpcf7 input:not([type="checkbox"], [type="radio"]),
   .wpcf7 textarea {
      padding: 7px 20px;
   }

   .wpcf7-radio {
      gap: 30px;
   }

   .wpcf7-radio .wpcf7-list-item-label {
      grid-template-columns: 24px 1fr;
   }

   .wpcf7-radio .wpcf7-list-item-label:before {
      width: 24px;
      height: 24px;
   }

   .wpcf7-radio .wpcf7-list-item-label:after {
      width: 14px;
      height: 14px;
   }

   .wpcf7-checkbox .wpcf7-list-item-label {
      grid-template-columns: 24px 1fr;
   }

   .wpcf7-checkbox .wpcf7-list-item-label:before {
      width: 20px;
      height: 20px;
   }

   .wpcf7-checkbox .wpcf7-list-item-label:after {
      width: 23px;
      height: 20px;
   }
}