@charset "UTF-8";

/*=============================================
 * HOME
*=============================================*/
#mv {
   display: flex;
   align-items: center;
   background: url("../img/index/mv-bg-img.jpg") no-repeat center top/cover;
   width: 100%;
   height: 100vh;
   min-height: 700px;
   position: relative;
}

#mv .wrap {
   z-index: 1;
}

#mv h2 {
   max-width: 532px;
}

#mv .button {
   padding-top: 90px;
}

#mv .button a {
   width: 320px;
}

#mv .catch {
   width: 80%;
   max-width: 1525px;
   position: absolute;
   bottom: 60px;
   right: 30px;
   z-index: 1;
}

.btn-scroll {
   width: 12px;
   height: 82px;
   position: absolute;
   bottom: 50px;
   left: 90px;
   cursor: pointer;
   padding-bottom: 305px;
   transition: all 0.3s;
}

.btn-scroll .border {
   width: 1px;
   height: 280px;
   background-color: rgba(255, 255, 255, 0.5);
   position: absolute;
   bottom: 0;
   left: 40%;
}

.btn-scroll .border:before {
   content: '';
   width: 100%;
   height: 100%;
   background-color: #fff;
   position: absolute;
   top: 0;
   left: 0;
   animation: sdl01 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

.btn-scroll:hover {
   opacity: 0.7;
}

@keyframes sdl01 {
   0% {
      transform: scale(1, 0);
      transform-origin: 0 0;
   }

   50% {
      transform: scale(1, 1);
      transform-origin: 0 0;
   }

   50.1% {
      transform: scale(1, 1);
      transform-origin: 0 100%;
   }

   100% {
      transform: scale(1, 0);
      transform-origin: 0 100%;
   }
}

@media screen and (min-width: 1024px) and (max-height: 820px) {
   #mv .catch {
      bottom: 20px;
   }
}

@media screen and (max-width: 1440px) {
   #mv .wrap {
      padding: 0 32px;
   }

   .btn-scroll {
      left: 20px;
   }
}

@media screen and (max-width: 767px) {
   #mv {
      min-height: 480px;
   }

   #mv .button {
      padding-top: 40px;
      text-align: left;
   }

   #mv .button a {
      width: 100%;
   }

   #mv .catch {
      width: 100%;
      right: 0;
      bottom: 0;
   }

   .btn-scroll {
      bottom: 12vw;
      left: 10px;
      padding-bottom: 110px;
   }

   .btn-scroll .border {
      height: 100px;
   }
}

/* -- --*/
.section-group {
   position: relative;
}

.section-group:before {
   content: '';
   width: 100%;
   background: url("../img/index/message-bg.png") no-repeat center top/cover;
   position: absolute;
   top: -355px;
   bottom: 0;
   left: 0;
}

/* -- --*/
#top__news {
   padding: 90px 0 110px;
}

#top__news .wrap {
   display: grid;
   grid-template-columns: 250px 1fr;
   align-items: center;
   gap: 30px;
   background-color: #fff;
   border: 2px solid #2B323D;
   border-radius: 50px;
   padding: 17px 32px 17px 60px;
   line-height: 24px;
}

#top__news h2 {
   display: flex;
   align-items: center;
   gap: 30px;
   line-height: inherit;
}

#top__news h2 img {
   max-width: 94px;
}

#top__news h2 span {
   border-left: 1px solid;
   padding-left: 30px;
}

#top__news .box {
   display: grid;
   grid-template-columns: auto 1fr;
   align-items: center;
   gap: 40px;
}

#top__news .box a {
   position: relative;
   padding: 12px 60px 12px 0;
}

#top__news .box a:after {
   content: '';
   width: 48px;
   height: 48px;
   background: url("../img/common/arrow-circle-right.png") no-repeat center top/cover;
   position: absolute;
   top: calc(50% - 24px);
   right: 0;
   transition: all 0.3s;
}

#top__news .box a span {
   -webkit-box-orient: vertical;
   -webkit-line-clamp: 1;
   display: -webkit-box;
   overflow: hidden;
}

#top__news .box a:hover:after {
   transform: translateX(5px);
}

@media screen and (max-width: 1023px) {
   #top__news .wrap {
      grid-template-columns: 1fr;
      gap: 10px;
      padding: 25px 32px 17px;
   }

   #top__news h2 {
      justify-content: center;
   }
}

@media screen and (max-width: 767px) {
   #top__news {
      padding: 30px 20px 50px;
   }

   #top__news .wrap {
      border-radius: 10px;
      padding: 20px;
   }

   #top__news h2 {
      gap: 20px;
   }

   #top__news h2 img {
      max-width: 74px;
   }

   #top__news h2 span {
      padding-left: 20px;
   }

   #top__news .box {
      grid-template-columns: 1fr;
      gap: 0;
   }

   #top__news .box a {
      display: flex;
      align-items: center;
      padding: 0 50px 0 0;
   }

   #top__news .box a:after {
      width: 40px;
      height: 40px;
      top: calc(50% - 20px);
   }

   #top__news .box a span {
      min-height: 40px;
      -webkit-line-clamp: 2;
   }
}

/* -- --*/
#top__message {
   padding-bottom: 195px;
}

#top__message .wrap {
   display: flex;
   justify-content: space-between;
   gap: 30px;
}

#top__message .col {
   width: 480px;
}

#top__message .txt,
#top__message .name {
   padding-top: 50px;
}

#top__message .txt {
   font-weight: 600;
   line-height: 40px;
}

#top__message .name {
   max-width: 232px;
}

#top__message figure {
   width: calc(100% - 510px);
   max-width: 617px;
}

@media screen and (max-width: 1023px) {
   #top__message .wrap {
      flex-direction: column;
   }

   #top__message figure {
      width: 100%;
      max-width: 100%;
   }
}

@media screen and (max-width: 767px) {
   #top__message {
      padding-bottom: 80px;
   }

   #top__message .col {
      width: 100%;
   }

   #top__message .txt,
   #top__message .name {
      padding-top: 20px;
   }

   #top__message .txt {
      line-height: 32px;
   }

   #top__message .name {
      max-width: 200px;
   }
}

/* -- --*/
#top__service {
   padding-bottom: 120px;
}

#top__service h2 {
   text-align: right;
   color: #fff;
}

#top__service .txt {
   width: 50%;
   margin-left: auto;
   padding-top: 50px;
   color: #fff;
   line-height: 40px;
}

#top__service .swiper {
   width: calc(50% + 600px);
   margin-right: 0;
   padding-top: 80px;
}

#top__service .swiper-slide {
   width: 429px;
   height: auto;
   text-align: center;
   margin-right: 27px;
   padding: 0 45px 50px;
   position: relative;
   box-sizing: border-box;
}

#top__service .swiper-slide:before {
   content: '';
   width: 100%;
   background-color: #fff;
   border: 2px solid #2B323D;
   position: absolute;
   top: 92px;
   bottom: 0;
   left: 0;
   box-sizing: border-box;
   border-radius: 10px;
}

#top__service .swiper-slide>* {
   position: relative;
}

#top__service .swiper-slide .no {
   width: 170px;
   margin: 0 auto;
}

#top__service .swiper-slide figure {
   padding-top: 25px;
}

#top__service .swiper-slide .caption {
   padding-top: 25px;
}

#top__service .swiper-scrollbar {
   background-color: #fff;
   max-width: 692px;
   border-radius: 5px;
   position: static;
   margin-top: 100px;
}

#top__service .swiper-scrollbar-drag {
   background-color: #2B323D;
   border-radius: 5px;
}

@media screen and (max-width: 1440px) {
   #top__service .swiper {
      width: calc(50% + 570px);
   }
}

@media screen and (max-width: 1200px) {
   #top__service .swiper {
      width: calc(50% + 480px);
   }
}

@media screen and (max-width: 1023px) {
   #top__service .swiper {
      width: calc(50% + 320px);
   }
}

@media screen and (max-width: 767px) {
   #top__service {
      padding-bottom: 80px;
   }

   #top__service h2 {
      text-align: left;
   }

   #top__service .txt {
      width: 100%;
      line-height: 32px;
      padding-top: 20px;
   }

   #top__service .swiper {
      width: calc(100% - 20px);
      padding-top: 40px;
   }

   #top__service .swiper-slide {
      width: 80vw;
      margin-right: 10px;
      padding: 0 20px 20px;
   }

   #top__service .swiper-slide:before {
      top: 62px;
   }

   #top__service .swiper-slide .no {
      width: 120px;
   }

   #top__service .swiper-slide figure,
   #top__service .swiper-slide .caption {
      padding-top: 15px;
   }

   #top__service .swiper-scrollbar {
      max-width: 50%;
      margin-top: 50px;
   }
}

/* -- --*/
#top__contact {
   position: relative;
   padding-top: 305px;
}

#top__contact:before {
   content: '';
   width: 100%;
   height: 551px;
   background: url("../img/index/contact-bg-1.jpg") no-repeat center top/cover;
   position: absolute;
   top: 0;
   left: 0;
}

#top__contact .row {
   background: url("../img/index/contact-bg-2.jpg") no-repeat center left/cover;
   color: #fff;
   padding: 130px 0 120px;
   position: relative;
}

#top__contact .txt {
   max-width: 860px;
   font-weight: 600;
   line-height: 40px;
   padding-top: 36px;
}

#top__contact .button {
   padding-top: 36px;
}

@media screen and (max-width: 767px) {
   #top__contact {
      padding-top: 200px;
   }

   #top__contact:before {
      height: 230px;
   }

   #top__contact .row {
      padding: 50px 0;
   }

   #top__contact .txt {
      line-height: 32px;
      padding-top: 20px;
   }
}

/* -- --*/

#top__insta {
   padding: 150px 0 115px;
   position: relative;
}

#top__insta figure {
	max-width: 817px;
	margin: 0 auto;
	padding-top: 75px;
}

#top__insta .txt {
	max-width: 860px;
	font-weight: 600;
	line-height: 40px;
	margin: 0 auto;
	padding-top: 35px;
}

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

#top__insta .button a {
	padding-right: 40px;
}

#top__insta .button img {
	max-width: 39px;
	margin-right: 10px;
}

@media screen and (max-width: 767px) {
	#top__insta {
		padding: 80px 0;
	}
	#top__insta figure {
		padding-top: 30px;
	}

	#top__insta .txt {
		line-height: 30px;
		padding-top: 30px;
	}

	#top__insta .button {
		padding-top: 30px;
	}
	#top__insta .button img {
		max-width: 29px;
	}
}

/* -- --*/

#top__company {
   padding: 130px 0 190px;
   position: relative;
}

#top__company:before {
   content: '';
   width: 100%;
   background-color: #fff;
   position: absolute;
   top: 0;
   bottom: 80px;
   left: 0;
}

#top__company h2,
#top__company .photo-full {
   position: relative;
}

#top__company .photo-full {
   padding-top: 60px;
}

#top__company .wrap {
   display: grid;
   grid-template-columns: 524px 1fr;
   gap: 30px;
   padding-top: 110px;
}

#top__company .gmap {
   max-width: 566px;
   height: 100%;
   margin-left: auto;
}

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

#top__company .txt-info dl {
   display: grid;
   grid-template-columns: 280px 1fr;
   font-weight: 600;
   line-height: 24px;
}

#top__company .txt-info dl+dl {
   padding-top: 20px;
}

#top__company .txt-info dl dd ul li {
   text-indent: -16px;
   padding-left: 16px;
}

@media screen and (max-width: 1023px) {
   #top__company .wrap {
      grid-template-columns: 1fr;
   }

   #top__company .gmap {
      width: 100%;
      max-width: 100%;
      height: 680px;
   }
}

@media screen and (max-width: 767px) {
   #top__company {
      padding: 80px 0;
   }

   #top__company:before {
      top: 0;
      bottom: 40px;
   }

   #top__company .photo-full {
      padding-top: 30px;
   }

   #top__company .wrap {
      padding-top: 50px;
   }

   #top__company .txt-info dl {
      display: grid;
      grid-template-columns: 1fr;
   }

   #top__company .gmap {
      height: 300px;
   }
}

/*=============================================
 * Contact
 *=============================================*/
.contact {
   padding: 160px 0 200px;
}

.contact__form {
   background-color: #fff;
   padding: 102px 73px 84px;
}

.contact .form-row {
   display: grid;
   grid-template-columns: 325px 1fr;
   align-items: flex-start;
   position: relative;
   padding-bottom: 60px;
}

.contact .form-row .caption {
   display: flex;
   align-items: center;
   gap: 20px;
   font-weight: 600;
   font-size: 23px;
   line-height: 32px;
   padding: 15px 0;
}

.contact .form-row .caption span {
   background-color: #FF3217;
   color: #fff;
   width: 52px;
   text-align: center;
   font-size: 16px;
}

.contact .form-pp {
   background-color: #F7F8F8;
   text-align: center;
   margin-top: 60px;
   padding: 60px;
   font-weight: 600;
   font-size: 16px;
   line-height: 40px;
}

.contact .form-pp .txt {
   padding-top: 30px;
}

.contact .form-check {
   padding-top: 30px;
}

.contact .form-check .wpcf7-checkbox {
   justify-content: center;
}

.contact .form-check .wpcf7-not-valid-tip {
   text-align: center;
}

.contact .form-btn {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
   padding-top: 50px;
}

.contact .form-btn input {
   width: 100%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
   opacity: 0;
   cursor: pointer;
}

.contact .form-btn p {
   display: flex;
   justify-content: center;
   align-items: center;
   width: 373px;
   height: 88px;
   background-color: #fff;
   border: 2px solid #2B323D;
   color: #000;
   font-weight: 600;
   font-size: 23px;
   letter-spacing: 0;
   line-height: 35px;
   box-sizing: border-box;
   padding: 0;
   position: relative;
   border-radius: 50px;
   text-align: center;
   transition: all 0.3s;
   cursor: pointer;
}

.contact .form-btn p:after {
   content: '';
   width: 48px;
   height: 48px;
   background: url("../img/common/arrow-circle-right.png") no-repeat center top/cover;
   position: absolute;
   top: calc(50% - 24px);
   right: 20px;
}

.contact .form-btn p:hover {
   background-color: #2B323D;
   color: #fff;
   opacity: 1;
}

.contact .form-btn .btn-back {
   background-color: #ccc;
}

.contact .form-btn .btn-back:after {
   right: auto;
   left: 20px;
   transform: rotate(180deg);
}

.contact .form-btn .wpcf7-spinner {
   display: none;
}

.contact .form-row+.form-btn {
   padding-top: 0;
}

.contact.confirm .form-row .caption {
   padding: 0;
}

.contact.thanks h3 {
   letter-spacing: 0.087em;
}

.contact.thanks .txt {
   padding-top: 40px;
}

.contact.thanks .txt p+p {
   padding-top: 30px;
}

.contact.thanks .button {
   padding-top: 40px;
}

@media screen and (max-width: 1023px) {
   .contact__form {
      padding: 102px 30px 84px;
   }

   .contact .form-check .wpcf7-checkbox {
      align-items: center;
   }
}

@media screen and (max-width: 767px) {
   .contact {
      padding: 80px 0;
   }

   .contact__form {
      padding: 30px 20px;
   }

   .contact .form-row {
      grid-template-columns: 1fr;
      gap: 10px;
      padding-bottom: 40px;
   }

   .contact .form-row .caption {
      font-size: 18px;
      line-height: 26px;
      padding: 0;
   }

   .contact .form-row .caption span {
      width: 42px;
      font-size: 14px;
   }

   .contact .form-pp {
      font-size: 14px;
      line-height: 32px;
      margin-top: 0;
      padding: 30px 20px;
   }

   .contact .form-pp .txt {
      text-align: justify;
      padding-top: 15px;
   }

   .contact .form-check {
      padding-top: 20px;
   }

   .contact .form-btn {
      flex-direction: column;
      padding-top: 30px;
   }

   .contact .form-btn p {
      width: 100%;
      max-width: 320px;
      height: 60px;
      font-size: 18px;
   }

   .contact .form-btn p:after {
      width: 40px;
      height: 40px;
      top: calc(50% - 20px);
      right: 10px;
   }

   .contact .form-btn .btn-back:after {
      left: 10px;
   }

   .contact.thanks .txt {
      text-align: justify;
      padding-top: 30px;
   }

   .contact.thanks .txt p+p {
      padding-top: 20px;
   }

   .contact.thanks .button {
      padding-top: 30px;
   }
}

/* =============================================
 * Post Type
*=============================================*/
.wp-pagenavi {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 20px;
   padding-top: 175px;
}

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

.wp-pagenavi>span,
.wp-pagenavi>a {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 48px;
   height: 48px;
   background-color: #fff;
   border: 2px solid #2B323D;
   color: #2B323D;
   font-family: "Urbanist", sans-serif;
   font-size: 16px;
   line-height: 24px;
   border-radius: 50%;
   box-sizing: border-box;
}

.wp-pagenavi a:hover {
   opacity: 1;
   background-color: #2B323D;
   color: #fff;
}

.wp-pagenavi .current {
   pointer-events: none;
   background-color: #2B323D;
   color: #fff;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
   display: block;
   width: 48px;
   height: 48px;
   position: relative;
   cursor: pointer;
   font-size: 0;
   background: url("../img/common/arrow-circle-right.png") no-repeat center top/cover;
   box-sizing: border-box;
   transition: all 0.3s;
   border-radius: 50%;
   border: 0;
}

.wp-pagenavi .previouspostslink {
   transform: rotate(180deg);
}

@media screen and (max-width: 767px) {
   .wp-pagenavi {
      gap: 10px;
      padding-top: 50px;
   }

   .wp-pagenavi>a,
   .wp-pagenavi>span {
      width: 32px;
      height: 32px;
   }

   .wp-pagenavi .previouspostslink,
   .wp-pagenavi .nextpostslink {
      width: 32px;
      height: 32px;
   }
}

/* -- -- */
.sidebar ul {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 20px;
}

.sidebar a {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 100%;
   height: 86px;
   background-color: #fff;
   text-align: center;
   font-weight: 600;
   font-size: 23px;
   position: relative;
   transition: all 0.3s;
   box-sizing: border-box;
}

.sidebar a:after {
   content: '';
   width: 48px;
   height: 48px;
   background: url("../img/common/arrow-circle-right.png") no-repeat center top/cover;
   position: absolute;
   top: calc(50% - 24px);
   right: 20px;
   transition: all 0.3s;
}

.sidebar a:hover,
.sidebar a.current {
   background-color: #2B323D;
   color: #fff;
   opacity: 1;
}

.sidebar a.current:after {
   transform: rotate(90deg);
}

@media screen and (max-width: 1023px) {
   .sidebar ul {
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
   }
}

@media screen and (max-width: 767px) {
   .sidebar a {
      height: 60px;
      font-size: 12px;
      box-sizing: border-box;
      padding-right: 15px;
   }

   .sidebar a:after {
      width: 24px;
      height: 24px;
      top: calc(50% - 12px);
      right: 10px;
   }
}

/* -- -- */
.news__list .item+.item {
   padding-top: 30px;
}

.news__list .item:not(:last-child) {
   border-bottom: 1px solid #2B323D;
   padding-bottom: 30px;
}

.news__list .item a {
   display: grid;
   grid-template-columns: 220px 1fr;
   align-items: center;
   gap: 50px;
   position: relative;
   padding-right: 64px;
}

.news__list .item a:after {
   content: '';
   width: 48px;
   height: 48px;
   background: url("../img/common/arrow-circle-right.png") no-repeat center top/cover;
   position: absolute;
   top: 50%;
   right: 0;
   transform: translate(0, -50%);
   transition: all 0.3s;
}

.news__list .item a:hover:after {
   transform: translate(5px, -50%);
}

.news__list figure {
   display: block;
   width: 100%;
   padding-top: 70%;
   position: relative;
}

.news__list figure img {
   position: absolute;
   top: 0;
   left: 0;
}

.news__list .text {
   display: flex;
   align-items: center;
   flex-wrap: wrap;
   gap: 10px 20px;
   line-height: 24px;
}

.news__list time {
   color: #78B841;
   font-weight: 700;
}

.news__list .cat {
   background-color: #78B841;
   color: #fff;
   text-align: center;
   min-width: 62px;
   font-weight: 700;
   font-size: 12px;
   padding: 0 10px;
}

.news__list .ttl {
   width: 100%;
   -webkit-box-orient: vertical;
   -webkit-line-clamp: 1;
   display: -webkit-box;
   overflow: hidden;
}

@media screen and (max-width: 767px) {
   .news__list .item a {
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
      padding-right: 32px;
   }

   .news__list .item a:after {
      width: 24px;
      height: 24px;
   }

   .news__list .text {
      gap: 5px;
   }

   .news__list .ttl {
      -webkit-line-clamp: 2;
   }
}

/* -- -- */
.cpt-archive {
   padding: 190px 0 220px;
}

.cpt-archive .news__list {
   padding-top: 150px;
}

@media screen and (max-width: 767px) {
   .cpt-archive {
      padding: 80px 0;
   }

   .cpt-archive .news__list {
      padding-top: 50px;
   }
}

/*
 * Post Detail
 *=============================================*/
.cpt-single {
   position: relative;
   padding: 190px 0 220px;
}

.cpt-single .sidebar {
   padding-bottom: 50px;
}

.cpt-single-time {
   display: inline-flex;
   vertical-align: middle;
   color: #78B841;
   font-weight: 700;
   margin-right: 20px;
}

.cpt-single-cate {
   display: inline-flex;
   vertical-align: middle;
   flex-wrap: wrap;
   gap: 5px;
}

.cpt-single-cate a {
   background-color: #78B841;
   color: #fff;
   text-align: center;
   min-width: 62px;
   font-weight: 700;
   font-size: 12px;
   padding: 0 10px;
}

.cpt-single-cate a:hover {
   background-color: #000;
   opacity: 1;
}

.cpt-single-title {
   padding-top: 20px;
}

.cpt-single-featured-img {
   padding-top: 50px;
}

.cpt-single-content {
   padding-top: 50px;
}

.cpt-single-content h2 {
   background-color: #f5f5f5;
   border-left: 8px solid #78B841;
   font-weight: 700;
   font-size: 26px;
   line-height: 34px;
   padding: 13px 20px;
   margin: 50px 0 20px;
}

.cpt-single-content h3 {
   font-weight: 700;
   font-size: 22px;
   line-height: 32px;
   border-left: 5px solid #78B841;
   border-bottom: 2px solid #78B841;
   padding: 0 20px 10px;
   margin: 50px 0 20px;
   box-sizing: border-box;
}

.cpt-single-content h4 {
   font-weight: 700;
   font-size: 20px;
   line-height: 30px;
   border-left: 5px solid #78B841;
   margin-top: 50px;
   margin-bottom: 20px;
   padding-left: 20px;
}

.cpt-single-content h1:first-child,
.cpt-single-content h2:first-child,
.cpt-single-content h3:first-child,
.cpt-single-content h4:first-child,
.cpt-single-content h5:first-child,
.cpt-single-content h6:first-child {
   margin-top: 0;
}

.cpt-single-content h2+h3,
.cpt-single-content h2+h4,
.cpt-single-content h3+h4 {
   margin-top: 0;
}

.cpt-single-content span[style="background-color: #ffb357;"] {
   color: #333;
}

.cpt-single-content mark {
   background-color: #ffb357;
   color: #333;
}

.cpt-single-content p img {
   display: inline-block;
   vertical-align: top;
   margin-right: 10px;
}

.cpt-single-content p img.aligncenter {
   display: block;
   margin: 0 auto;
}

.cpt-single-content p img.alignright {
   display: block;
   margin-left: auto;
}

.cpt-single-content p img:last-child {
   margin-right: 0;
}

.cpt-single-btn {
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 22px;
   font-size: 15px;
   line-height: 26px;
   padding-top: 60px;
}

.cpt-single-btn .back a {
   display: block;
   padding: 0 22px;
   border-right: 1px solid #000;
   border-left: 1px solid #000;
}

.cpt-single-btn .prev,
.cpt-single-btn .next {
   width: 26px;
   height: 26px;
}

.cpt-single-btn .prev a,
.cpt-single-btn .next a {
   display: block;
   width: 100%;
   height: 100%;
}

.cpt-single-btn .prev a {
   background: url("../img/common/arrow-circle-right.png") no-repeat center top/cover;
   transform: rotate(180deg);
}

.cpt-single-btn .next a {
   background: url("../img/common/arrow-circle-right.png") no-repeat center top/cover;
}

@media screen and (max-width: 1440px) {
   .cpt-single .wrap {
      gap: 50px;
   }
}

@media screen and (max-width: 1023px) {
   .cpt-single-content p img {
      display: block;
      margin: 0 auto 15px;
   }

   .cpt-single-content p img:last-child {
      margin: 0 auto;
   }
}

@media screen and (max-width: 767px) {
   .cpt-single {
      padding: 80px 0;
   }

   .cpt-single .wrap {
      grid-template-columns: 1fr;
   }

   .cpt-single .sidebar ul {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
   }

   .cpt-single .sidebar ul li {
      width: 100%;
   }

   .cpt-single .sidebar ul li+li {
      padding-top: 0;
   }

   .cpt-single-title {
      font-size: 20px;
   }

   .cpt-single-content h2 {
      font-size: 20px;
      padding: 9px 15px;
   }

   .cpt-single-content h3 {
      font-size: 18px;
      padding: 0 10px 10px;
   }

   .cpt-single-content h4 {
      font-size: 16px;
   }

   .cpt-single-content p img {
      display: block;
      margin: 0 auto 15px;
   }

   .cpt-single-content p img.alignright {
      margin: 0 auto 15px;
   }

   .cpt-single-content p img:last-child {
      margin: 0 auto !important;
   }

   .cpt-single-btn {
      padding-top: 40px;
   }
}

.cpt-single-gallery {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   gap: 10px;
   margin: 0 20px;
   padding-top: 30px;
}

.cpt-single-gallery .tab-content {
   width: 100%;
}

.cpt-single-gallery .tab-content li {
   width: 100%;
   padding-top: 66.6%;
   position: relative;
}

.cpt-single-gallery .tab-content li img {
   display: block;
   max-height: 100%;
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
}

.cpt-single-gallery .tab-link {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
   width: 100%;
}

.cpt-single-gallery .tab-link li {
   width: calc(25% - 8px);
   padding-top: calc(25% - 8px);
   position: relative;
   transition: all 0.2s;
}

.cpt-single-gallery .tab-link li:after {
   content: '';
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.5);
   position: absolute;
   top: 0;
   left: 0;
   opacity: 0;
   transition: all 0.2s;
}

.cpt-single-gallery .tab-link li img {
   width: 100%;
   height: 100%;
   max-width: inherit;
   object-fit: cover;
   position: absolute;
   top: 0;
   left: 0;
}

.cpt-single-gallery .tab-link li.active:after {
   opacity: 1;
}

.cpt-single-gallery .tab-link li:hover {
   opacity: 0.7;
}

@media screen and (max-width: 767px) {
   .cpt-single-gallery {
      margin: 0 10px;
   }
}

/*=============================================
 * 利用規約
*=============================================*/
#privacy-policy-terms {
   padding-bottom: 150px;
}

#privacy-policy-terms .box {
   font-size: 14px;
   line-height: 20px;
}

#privacy-policy-terms .box dl {
   padding-top: 40px;
}

#privacy-policy-terms .box dl dt {
   font-weight: 500;
   font-size: 16px;
   line-height: 24px;
}

#privacy-policy-terms .box dl dd {
   padding: 10px 0 0 30px;
}

#privacy-policy-terms .box dl dd p+p {
   padding-top: 15px;
}

#privacy-policy-terms .box ol {
   list-style: decimal;
   padding-left: 15px;
}

#privacy-policy-terms .box ol li+li {
   padding-top: 15px;
}

#privacy-policy-terms .box p+ol {
   padding: 15px 0 0 30px;
}

#privacy-policy-terms .box ol li ol {
   padding-top: 15px;
}

#privacy-policy-terms .end {
   padding-top: 15px;
}

@media screen and (max-width: 767px) {
   #privacy-policy-terms {
      padding-bottom: 50px;
   }

   #privacy-policy-terms .box {
      padding-top: 20px;
   }

   #privacy-policy-terms .box dl dd {
      padding-left: 10px;
   }

   #privacy-policy-terms .box p+ol {
      padding-left: 15px;
   }
}

/*=============================================
 * ご利用ガイド
*=============================================*/
#guide__list {
   padding: 0;
}

#guide__list .heading {
   width: 31.25%;
   padding: 0 20px 15px;
   box-sizing: border-box;
}

#guide__list h2 {
   max-width: 300px;
   font-weight: 600;
   margin-left: auto;
}

#guide__list .row {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   border-top: 1px solid #5F878F;
   border-bottom: 1px solid #5F878F;
}

#guide__list .row .nav {
   width: 31.25%;
   font-size: 15px;
   font-weight: 500;
   line-height: 30px;
   border-right: 1px solid #5F878F;
   padding: 80px 20px;
   box-sizing: border-box;
}

#guide__list .row .nav ul {
   max-width: 300px;
   position: sticky;
   top: 120px;
   margin-left: auto;
}

#guide__list .row .nav ul li+li {
   padding-top: 30px;
}

#guide__list .row .nav ul a {
   display: inline-block;
   color: #ccc;
   padding-left: 15px;
   position: relative;
}

#guide__list .row .nav ul a:before {
   content: '';
   width: 10px;
   height: 10px;
   border-radius: 50%;
   background-color: #ccc;
   position: absolute;
   top: 11px;
   left: 0;
}

#guide__list .row .nav ul a.active {
   color: #333;
}

#guide__list .row .nav ul a.active:before {
   background-color: #3D9FCA;
}

#guide__list .row .contents {
   width: 68.75%;
}

#guide__list .row hr {
   border-bottom-color: #5F878F;
}

#guide__list .row .item {
   padding: 80px;
   position: relative;
}

#guide__list .row .item dl {
   max-width: 720px;
   padding-top: 30px;
}

#guide__list .row .item dl dt {
   font-size: 18px;
   line-height: 26px;
   color: #5F878F;
}

#guide__list .row .item dl dd {
   font-weight: 500;
   font-size: 14px;
   line-height: 24px;
   letter-spacing: 0.1em;
   padding-top: 15px;
}

@media screen and (max-width: 1023px) {
   #guide__list .heading {
      padding: 0 10px 15px;
   }

   #guide__list .row .nav {
      padding: 60px 10px;
   }
}

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

   #guide__list .heading {
      width: auto;
      padding: 0 20px 15px;
   }

   #guide__list h2 {
      margin-left: 0;
   }

   #guide__list .row .nav {
      width: 100%;
      border-right: 0;
      border-bottom: 1px solid #000;
      padding: 20px;
   }

   #guide__list .row .nav ul {
      margin-left: 0;
   }

   #guide__list .row .nav ul li+li {
      padding-top: 10px;
   }

   #guide__list .row .contents {
      width: 100%;
   }

   #guide__list .row .item {
      padding: 30px 20px;
   }

   #guide__list .row .item dl dt {
      font-size: 15px;
   }
}