@charset "UTF-8";

/* =======================================

	reset

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

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block; }

html {
  overflow-y: scroll; 
    font-size: 100%;
  }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none; }

input, textarea, select, button {
  margin: 0;
  padding: 0;
  border: none;
}

ol, ul {
  list-style: none; }

caption, th {
  text-align: left; }

a:focus {
  outline: none; }

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

.clearfix {
  min-height: 1px; }

* html .clearfix {
  height: 1px;}

*, *:before, *:after {
  box-sizing: border-box; }

/* =======================================

	初期設定

======================================= */


body {
  position: relative;
  color: #3C3C3C;
  background-color: #faf8f6;
  font-size: 16px;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 400;
  font-style: normal;
}

p{ 
  font-style: normal;
  font-size: 16px;
  line-height: 200%;
  letter-spacing: 0.04rem;
}

p, li, span, label, dt, dd{
  font-family: 'Noto Sans', sans-serif;
  line-height: 200%;
  letter-spacing: 0.04rem;
}

.header a, 
.footer a{
  font-family: "Zen Maru Gothic", serif;
}

a {
  color: #3C3C3C;
  text-decoration: none;
  transition: .3s; 
}

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

.pc{
  display: block;
}

.sp{
  display: none;
}

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

  p{
    font-size: 14px;
    letter-spacing: 0;
  }
  
  .pc{
    display: none;
  }
  
  .sp{
    display: block;
  }

}

/* =======================================
    layout
======================================= */

.tac{
  text-align: center;
}

.txt-under{
  text-decoration: underline;
}

.mb-xs{
  margin-bottom: 10px;
}

.mb-sm{
  margin-bottom: 20px;
}

.mb-md{
  margin-bottom: 40px;
}



/* =======================================
    header
======================================= */
#header {
  z-index: 100;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.header, .navigation, .col-2, .fixed_btn {
  position: relative;
  z-index: 2; /* ビデオの上に表示 */
}

.header-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; /* 画面の高さ全体を使用 */
  z-index: -1; /* 他の要素の背面に配置 */
  overflow: hidden;
}

.header-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* ビデオを背景にカバー */
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* コンテンツのアスペクト比を保持しつつ、コンテナの全体を埋める */
}

#header .col-2 {
  padding: 40px 40px;
  justify-content: space-between;
  align-items: center;
  margin-right: 120px;
}

#header .col-2 .logo {
  width: 100%;
}

#header .col-2 .logo h1 img {
  width: 120px;
  z-index: 99;
}

#header .col-2 > div {
  width: 100%;
}

.txt-menu {
  display: flex;
  align-items: center;
  gap: 0 30px;
  justify-content: flex-end;
  white-space: nowrap;
}

.txt-menu a {
  color: #3C3C3C;
}

@media screen and (max-width: 750px) {
  #header {
    background-color: #FFF;
  }

  .header-video {
    position: relative;
    width: 100%;
    height: auto; /* 高さを自動調整 */
    overflow: hidden;
  }

  .header-video video {
    display: block;
    position: relative;
    width: 100%;
    height: auto; /* 高さを自動調整 */
    object-fit: contain; /* アスペクト比を保持しつつ横幅いっぱいに表示 */
  }

  #header .col-2 {
    padding: 20px;
  }

  #header .col-2 .logo h1 img {
    fill: #3C3C3C;
  }
}

.popup-banner {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 1;
}

.popup-banner__body:hover{
  cursor: pointer;
}

.popup-banner__label {
  display: block;
  background: #fff;
  color: #333;
  font-size: 16px;
  padding: 6px 20px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  width: 100%;
  text-align: center;
}

  .popup-banner__label span{
    display: none;
  }

.popup-banner__label::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #fff;
}

.popup-banner__body {
  display: block;
  color: #fff;
  padding: 20px 40px;
  border-radius: 20px;
  font-size: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.1em;
}

.popup-banner__body span{
  font-size: 16px;
  font-weight: 600;
}

.popup-banner01{
  background-color: #28BB9D;
  margin-bottom: 10px;
}

.popup-banner02{
  background-color: #88D4E4;  
}

.popup-banner01:hover{
  background-color: #F39800;  
}

.popup-banner02:hover{
  background-color: #F39800;  
}


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

  .popup-banner {
  position: static;
  bottom: 0px;
  right: 0px;
  padding: 20px;
  }

  .popup-banner__label{
    position: static;
    transform:none;
    margin-bottom: 10px;
    background-color: none;
    box-shadow:none;
  }

  .popup-banner__label span{
    display: inline-block;
  }

  .popup-banner__body {
  padding: 20px;
  font-size: 16px;
  box-shadow:none;
  width: 100%;
}

.popup-banner01{
  margin-bottom: 10px;
}

}


/* =======================================

	navigation

======================================= */


.hamburger-menu {
  position: fixed;
  top: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  border: none;
  background: transparent;
  appearance: none;
  padding: 0;
  cursor: pointer;
  z-index: 101;
  border-radius: 50%;
  border: solid 1px #3C3C3C;
  background-color: #3C3C3C;
}

.hamburger-menu__label {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: #fff;
  font-weight: bold;
  pointer-events: none;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
}


.hamburger-menu__bar {
  display: inline-block;
  width: 50%;
  height: 2px;
  background: #FFF;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: .5s;
}
.hamburger-menu__bar:first-child {
  top: 40%;
}
.hamburger-menu__bar:nth-child(2) {
  top: 50%;
}
.hamburger-menu__bar:last-child {
  top: 60%;
}
.hamburger-menu--open .hamburger-menu__bar {
  top: 50%;
}
.hamburger-menu--open .hamburger-menu__bar:first-child {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.hamburger-menu--open .hamburger-menu__bar:last-child {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
  display: none;
}

#navigation h1{
  text-align: center;
  color: #FFF;
  margin-bottom: 60px;
}

#navigation h1 span{
  display: inline-block;
  font-weight: normal;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: .12em;
  color: #FFF;
}

@media screen and (max-width: 750px) {
  #navigation h1{
    margin-bottom: 40px;
    text-align: left;
  }

  #navigation h1 img{
    width: 160px;
  }

  .hamburger-menu {
    border: solid 1px #3C3C3C;
  }
  
  .hamburger-menu__bar {
    background: #FFF;
  }
}

.navigation {
  position: fixed;
  top: 0px;
  right: 100%;
  width: 100%;
  height: 100vh;
  background: #F39800;
  transition: left 0.5s ease;
  padding: 100px 20px;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.navigation::-webkit-scrollbar{
  display:none;
}

.navigation .col-2{
  align-items: flex-start;
  gap: 0 20px;
}

.navigation .col-2 div{
  width: 100%;
  margin-bottom: 20px;
}

/* メニューが開いている時のナビゲーション位置 */
.navigation--open {
  right: 0; /* メニュー開時の位置 */
}

.nav-ttl h1 img{
  width: 200px;
}

.nav-ttl a i{
  color: #fff;
}


.navigation__list {
  display: flex;
  gap: 0 60px;
  justify-content: center;
}

.navigation__list a{
  font-size: 20px;
  letter-spacing:.12em;
  color: #FFF;
  font-weight: 700;
}

.navigation__list ul{
  padding-right: 30px;
}

.navigation__list ul li{
  margin-bottom: 10px;
}

.navigation__list ul:last-of-type{
  padding-right: 0px;
}

@media screen and (max-width: 750px) {
  .navigation__list{
    flex-direction: column;
  }
  .navigation__list ul{
    padding-right: 0;
  }
}


.navigation__link {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  display: block;
  padding: 0.5em 2.5em;
  transition: .5s;
  font-size: 120%;
  margin-bottom: 7px;
  border-bottom: 2px solid #ffffff;
}

.navigation--open {
  display: block; /* メニューを表示 */
}


.btn-nav{
  margin-top: 60px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 0.5em 2.5em;
  transition: .5s;
  font-size: 20px;
  text-align: center;
  width: 250px;
}

.btn-nav01{
  background-color: #D45346;
}

.btn-nav02{
  background-color: #7CB7BE;
}

.btn-nav03{
  background-color: #8EC21F;
}

/*accordion*/

.accordion-003 {
  width: 100%;
  margin-bottom: 7px;
  border-bottom: 2px solid #ffffff;
}

.accordion-003 summary {
  font-size: 120%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em;
  color: #FFF;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.accordion-003 summary::-webkit-details-marker {
  display: none;
}

.accordion-003 summary::before,
.accordion-003 summary::after {
  width: 3px;
  height: .9em;
  background-color: #FFF;
  content: '';
}

.accordion-003 summary::before {
  position: absolute;
  right: 2em;
  rotate: 90deg;
}

.accordion-003 summary::after {
  transition: rotate .3s;
}

.accordion-003[open] summary::after {
  rotate: 90deg;
}

.accordion-003 p {
  opacity: 0;
  margin: 0;
  transition: transform .5s, opacity .5s;
}

.accordion-003[open] p {
  max-width: 100%;
  transform: none;
  opacity: 1;
}

.accordion-003 ul{
  margin-bottom: 20px;
}


#sp-footer-nav{
  position: fixed;
  width: 100%;
  bottom: 0px;
  font-size: 0;
  z-index: 100;
}

#sp-footer-nav ul{
  display: flex;
  list-style: none;
  padding:0;
  margin:0;
  width:100%;
}

#sp-footer-nav li{
  justify-content: center;
  align-items: center;
  width: 50%;
  padding:0;
  margin:0;
  font-size: 14px;
}

#sp-footer-nav li:first-child{
  background: #677698;
}

#sp-footer-nav li:last-child{
  background: #DC9898;
}

#sp-footer-nav li a{
  color: #fff;
  text-align: center;
  display:block;
  width: 100%;
  padding:10px;
}


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

  .navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    transition: transform 0.5s ease;
    transform: translateX(-100%);
    z-index: 100;
    display: block;
  }

  .navigation .col-2{
    flex-direction: column;
    gap: 0px;
  }

  .navigation .col-2 div{
    margin-bottom: 0;
  }

  .accordion-003:last-of-type{
    margin-bottom: 0;
  }

  .accordion-003 summary{
    font-size: 100%;
    margin-bottom: 0px;
    padding: 0.2em 0;
  }

  .accordion-003 summary::after {
    position: absolute;
    right: 2em;
  }

  .navigation__link {
    font-weight: 700;
    font-size: 100%;
    margin-bottom: 0px;
    padding: 0.2em 0;
  }

  .navigation__link--item {
    padding: 0px;
}

.col-2.link--btn{
  flex-direction: row;
  padding-top: 20px;
}

.col-2.link--btn div{
  width: 50%;
}
  
.navigation__link--btn{
  padding: 1em;
  font-size: 100%;
}

  .nav-ttl a p{
    display: block;
    color: #fff;
    font-weight: 700;
    font-size:150%;
    padding-top: 0;
    padding-bottom: 20px;
  }

  .navigation--open {
    transform: translateX(0);
  }

  .link--btn{
    flex-direction: row;
    gap: 0 20px;
  }

  .navigation__link--btn:first-of-type{
    margin: 0 0;
  }

  .hamburger-menu{
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .header-nav{
    display: none;
  }

}

/* =======================================

	hero

======================================= */

.hero{
  position: relative;
  background-color: #f4f3ef;
  height: 100vh;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero h1{
  font-size: 220%;
  font-weight: 700;
  letter-spacing: 0.04em;
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translate(-50%,-10%);
  color: #FFF;
  text-align: center;
}

@media screen and (max-width: 750px) {
.hero h1{
  font-size: 120%;
}
}

/* =======================================

	投稿

======================================= */

.article a{
  text-decoration:underline;
  font-weight: bold;
}

#contents-category{
  padding: 120px 10%;
}

.ttl-type-news{
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;
  color: #7fbaaa;
  text-align: left;
}

.section-blog .col-4 {
  justify-content: flex-start;
  align-items: flex-start;
}

.section-blog .col-4 > div{
  width: auto;
}

.ttl-type-span{
  font-size: 90%;
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  }


/* =======================================

	カテゴリーページ

======================================= */

#contents-category .inner {
  display: flex;
  gap: 0px;
  width: 100%;
  overflow: hidden;
}

@media screen and (max-width: 750px) {
  #contents-category {
    padding: 0 20px;
    margin-left: 0;
  }
}

@media screen and (max-width: 750px) {
  #contents-category .inner {
    flex-direction: column-reverse;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 60px 0;
  }
}

@media screen and (max-width: 750px) {
  #contents-category .inner {
    padding-left: 0px;
    padding-right: 0px;
  }
}

#category-main {
  padding-bottom: 40px;
  font-family: "Noto Sans JP", serif;
}

#category-main .article {
  margin-bottom: 40px;
  padding-bottom: 40px;
}

@media screen and (max-width: 768px) {
  #category-main .article {
    margin-bottom: 40px;
    padding-bottom: 20px;
  }
}

#category-main .article .ttl-type02 {
  color: #3C3C3C;
  position: relative;
  margin-bottom: 10px;
  padding: 5px 0;
  border-bottom: 1px solid #ddd;
  font-weight: 700;
  font-family: "Noto Sans JP", serif;
}

#category-main .article .date {
  margin-bottom: 15px;
}

@media screen and (min-width: 1210px) {
  #category-main {
    padding-bottom: 0;
    float: right;
    width: 78%;
  }
}

#category-side{
  padding-right: 40px;
}

#category-side a {
  display: block;
  width: 100%;
  padding: 4px 0;
  text-align: left;
}

#category-side a:hover {
  color: #f8d34b;
  text-decoration: underline;
}

#category-side .category {
  margin-bottom: 20px;
}

#category-side .backnumber .year {
  position: relative;
  padding-left: 20px;
  cursor: pointer;
}

#category-side .backnumber .year .icon {
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  margin-top: -2px;
}

#category-side .backnumber .year .icon span {
  position: absolute;
  display: inline-block;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #F39800;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#category-side .backnumber .year.open span {
  background-color: #F39800;
}

#category-side .backnumber .year.open span:nth-of-type(2) {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

#category-side .backnumber .month {
  display: none;
}

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

  #category-side{
    padding-right: 0px;
  }

  
  #category-side .backnumber section {
    margin-bottom: 10px;
  }

  #category-side li {
    display: inline-flex;
    flex-wrap: wrap;
  }

}

@media screen and (min-width: 1210px) {
  #category-side {
    width: 20%;
  }
}

.category-ttl {
  display: block;
  font-size: 16px;
  font-style: normal;
  line-height: 20px;
  letter-spacing: .12em;
}

@media screen and (max-width: 750px) {
  .category-ttl {
    display: block;
  }
}

.category {
  margin: 0;
  text-align: left;
  width: max-content;
}

.date-category .category {
  text-align: center;
  width: 100px;
}

.photo-img {
  display: block;
  width: 100%;
  object-fit: cover;
  overflow: hidden;
  margin-bottom: 10px;
}

.wp-post-image {
  height: 250px;
  object-fit: cover;
  object-position: top;
  width: 100%;
}

.no-thumbnail{
  max-height: 250px;
  object-fit: cover;
  width: 100%;
}

#book .photo-img {
  width: 200px;
}

.date-category {
  display: flex;
  align-items: center;
}


.ttl-type03 {
  position: relative;
  margin-bottom: 10px;
  padding: 5px 0;
  border-bottom: 1px solid #ddd;
  font-size: 18px;
  font-weight: normal;
  width: max-content;
}

.ttl-type03:before {
  position: absolute;
  left: 0;
  bottom: -1px;
  content: "";
  width: 60px;
  height: 1px;
  background-color: #F39800;
}

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

  .category{
    width: 100%;
  }

  .category .month{
    width: 100%;
  }

  .category .category-list {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-top: 15px;
    overflow-x: hidden; /* 横スクロールを隠す */
}
  .category .category-list li {
    display: block;
    word-break: break-all;
    width: auto;
    padding: 2px 10px;
    border: 1px solid #F39800;
    letter-spacing: 0;
    font-size: 12px;
    color: #3C3C3C;
    text-align: center;
  }

  .category .month li:ahover {
    text-decoration: none;
  }
}

#contents-category .post h1, #contents-category .post h2, #contents-category .post h3, #contents-category .post h4, #contents-category .post h5, #contents-category .post h6 {
  margin-bottom: 15px;
}

#contents-category .post h1 {
  font-size: 26px;
}

#contents-category .post h2 {
  font-size: 24px;
}

#contents-category .post h3 {
  font-size: 22px;
}

#contents-category .post h4 {
  font-size: 20px;
}

#contents-category .post h5 {
  font-size: 18px;
}

#contents-category .post h6 {
  font-size: 16px;
}

#contents-category .post p, #contents-category .post ul, #contents-category .post ol {
  margin-bottom: 10px;
}

.pager ul{
  display: flex;
  justify-content: center;
  gap: 0 10px;
  margin: 0 auto;
}


/* =======================================

	section

======================================= */

.section{
  padding: 120px 0;
}

#header.section{
  padding: 0;
  display: block;
  height: 100vh;
}

.contents{
  margin: 0 0;
  padding: 0 10%;
}

.contents-item{
  padding: 60px 0px;
}

h1{
  font-size: 36px;
  line-height: 140%;
  letter-spacing: -0.02em;
  font-weight: 600;
  text-transform:uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.font-custom h1{
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

h1 span{
  display: block;
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.04em;
  color: #3C3C3C;
  font-family: "Zen Maru Gothic", sans-serif;
}

h2{
  display: block;
  font-weight:700;
  font-size: 32px;
  line-height: 150%;
  letter-spacing: .12em;
}

h3{
  display: block;
  font-weight:700;
  font-size: 28px;
  line-height: 150%;
}

h4{
  display: block;
  font-weight:700;
  font-size: 24px;
  line-height: 150%;
}

h5{
  display: block;
  font-weight:700;
  font-size: 20px;
  line-height: 150%;
}



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

  #header.section{
    height: auto;
  }

  .section{
    padding: 0;
    height: auto;
  }

  .contents{
    padding: 60px 20px;
  }

  h1 span{
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0;
  }



  .contents-item{
    padding: 40px 0px 0px 0px;
  }

}



/* ==================

	txt

=================== */

.txt-wrap{
  margin: 60px 0;
}

@media screen and (max-width: 750px) {
  .txt-wrap{
    margin: 20px 0;
  }
}

/* ==================

	col

=================== */


/* ==================
	col-2
=================== */

.col-2{
  display: flex;
}

.col-2 > div{
  width: 50%;
}

@media screen and (max-width: 750px) {
  .col-2{
    flex-direction:column;
  }
  
  .col-2 > div{
    width: 100%;
  }
  
}

/* ==================
	col-3
=================== */

.col-3{
  display: flex;
  justify-content: flex-start;
  gap: 30px;
  margin: 60px 0;
}

.col-3 > div{
  width: 33.33%;
}

@media screen and (max-width: 750px) {
  .col-3{
    margin-top: 40px;
    margin-bottom: 0px;
    flex-direction:column;
  }
  
  .col-3 > div{
    width: 100%;
  }
  
}


/* ==================
	col-4
=================== */

.col-4{
  display: inline-flex;
  justify-content: flex-start;
  gap: 30px;
  margin: 60px 0;
}

.col-4 > div{
  width: 25%;
}

@media screen and (max-width: 750px) {
  .col-4{
    flex-direction:column;
    margin-top: 60px;
    margin-bottom: 0;
  }
  
  .col-4 > div{
    width: 100%;
  }
  
}



/* ==================

	btn

=================== */

.fixed_btn.pc {
  position: fixed;
  bottom: 100px; /* 初期状態で非表示 */
  right: 0;
  padding: 20px;
  z-index: 3;
  writing-mode: vertical-rl;
  text-align: center;
  background-color: #8EC21F;
  color: #FFF;
  font-weight: 700;
  border-radius: 20px 0 0 20px;
  transition: bottom 0.5s ease-in-out; /* スムーズに表示/非表示 */
}

.scroll-fixed {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.5s ease;
  pointer-events: none; /* 非表示時はクリックも防ぐ */
}

.scroll-fixed.is-show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

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

  .fixed_btn.pc{
    display: none;
  }

  .fixed_btn.sp {
    position: fixed;
    right: 10px;
    width: 55px;
    height: 55px;
    bottom: 80px;
    background: #8EC21F;
    border-radius: 50px;
    z-index: 3;
  }
  
   .fixed_btn.sp::before{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 25px;
    height: 25px;
    margin: auto;
    color: #fff;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f02d';
    font-size: 25px;
    text-align: center;
  }
   
}


.btn-01 {
  cursor: pointer;
  transition: all .2s;
  border-radius: 100px;
  color: #3C3C3C;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  font-family: "Montserrat", sans-serif;
}

.btn-01 > svg {
  width: 34px;
  margin-right: 10px;
  transition: transform .3s ease-in-out;
}

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

  .btn-01 p{
    line-height: 150%;
  }

  .btn-01 > svg {
    z-index: 3;
    width: 28px;
    margin-right: 10px;
  }
}

.btn-01:hover svg {
  transform: translateX(5px);
}

.btn-01:active {
  transform: scale(0.95);
}

.btn-sns{
  display: inline-block;
  margin-left: 10px;
}

.btn-02 {
	display: block;
	text-align: center;
	border-radius: 50px;
	text-decoration: none;
	min-width: 250px;
  width: max-content;
	padding: 1rem 4rem;
	font-weight: 700;
  background-color: #F39800;
	color: #FFF;
	cursor: pointer;
	position: relative;
 	overflow: hidden;
 	z-index: 1;
}

.btn-02::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #FFF;
	transform: translateX(-100%);
	transition: all .3s;
	z-index: -1;
}
.btn-02:hover::before {
	transform: translateX(0);
}

.btn-02:hover {
	color: #F39800;
}

.btn-03 {
	display: block;
  text-align: right;
	font-weight: 700;
  color: #F39800;
}
.btn-03:hover {
	color: #8EC21F;
}

@media screen and (max-width: 768px) {
  .btn-02{
    min-width:100%;
    width: 100%;
  }
}


/* ==================

	section-concept

=================== */

#background {
  position: relative;
  height: auto;
  box-sizing: border-box;
  padding: 120px 10%;
  overflow: hidden; /* オーバーレイがはみ出さないようにする */
  height: auto;
}

#background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/background.jpg);
  background-size: cover;
  background-position: center;
  z-index: -2; /* 背景画像をオーバーレイの下に配置 */
}

#background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f4f3ef;
  opacity: 0.75; /* 必要に応じて調整 */
  z-index: -1; /* 背景画像の上に配置 */
}

#background .section-ttl{
  margin-bottom: 40px;
}

#background h1{
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}

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

.background-txt p{
  font-size: 18px;
  margin-bottom: 18px;
}


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

  #background {
    padding: 80px 20px;
    height: auto; /* スマートフォンでは高さを100%に設定 */
  }

  #background .section-ttl{
    margin-bottom: 30px;
  }

  #background .section-ttl h1{
    font-size: 18px;
  }

  .background-txt p{
    text-align: left;
    font-size: 14px;
    line-height: 32px;
  }

  .background-img {
    position: static;
    width: 100%;
    height: 100%; /* スマートフォンでは高さを100%に設定 */
    background-size: cover;
    background-position: center;
  }

}


#concept-top .btn-01{
  font-size: 24px;
}

.container {
  display: flex;
  width: 100%;
  gap: 0 60px;
}

.left-section, .right-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  overflow: hidden;
}

.left-section {
  position: relative;
  background-color: #FFF;
  text-align: left;
  padding-left: 10%;
}

.concept-wrap{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}


.hover-section {
  position: absolute;
  display: none;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
  width: 100%;
  text-align: left;
  flex-direction: column;
}

.right-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Align text at the start */
  align-items: flex-start; /* Left align text */
  text-align: left; /* Ensure text is left aligned */
  padding-right: 10%;
}

.right-section a{
  width: 100%;
  display: block;
  padding: 20px 0;
  border-bottom: solid 1px #ccc;
}

.hover-link {
  width: 100%;
  display: flex;
  justify-content: flex-start; /* Left align text */
  align-items: center;
  gap: 0 20px;
}

.hover-link:first-of-type {
  border-bottom: none;
}

.concept-number {
  width: max-content;
  font-size: 14px;
  color: #F39800;
  font-weight: 700;
}

.concept-list h3{
  margin-bottom: 10px;
}


.hover-section.active {
  display: block;
}

#hover-section1 {
  background-image: url(../img/about/concept01.jpg);
  background-size: cover;
  background-position: center;
}

#hover-section2 {
  background-image: url(../img/about/concept02.jpg);
  background-size: cover;
  background-position: center;
}

#hover-section3 {
  background-image: url(../img/about/concept03.jpg);
  background-size: cover;
  background-position: center;
}

#hover-section4 {
  background-image: url(../img/about/concept04.jpg);
  background-size: cover;
  background-position: center;
}

#hover-section5 {
  background-image: url(../img/about/concept05.jpg);
  background-size: cover;
  background-position: center;
}

#hover-section6 {
  background-image: url(../img/about/concept06.jpg);
  background-size: cover;
  background-position: center;
}

#concept-top .concept-sub-item{
  color: #FFF;
}

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

  #concept-top .concept-list h3{
    text-align: center;
    font-size: 18px;
  }

  .container {
    flex-direction: column;
    width: 100%;
    gap: 0 60px;
  }

  .hover-link{
    gap: 0 10px;
  }

  .hover-link.concept-list{
    padding: 0;
  }


  .right-section{
    padding-right: 0;
  }

}


.concept-img {
  position: relative;
  width: 100%;
  height: 40vh;
  background-image: url('../img/concept01.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.concept-txt p {
  line-height: 2.5em;
  letter-spacing: .12rem;
}


#concept-top {
  padding: 120px 0;
}

#concept-top h3{
  display: block;
  font-weight:500;
  font-size: 28px;
  line-height: 150%;
}


@media screen and (max-width: 750px) {
  #concept-top {
    padding: 60px 20px;
  }

  .concept-txt p {
    line-height: 2em;
    letter-spacing: 0rem;
  }

  #concept00 h1{
    font-size: 20px;
  }

}

#concept-top .section-ttl {
  text-align: center;
  margin-bottom: 60px;
}

#concept-top .btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.concept-item {
  width: 100%;
  height: 600px;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.concept-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* 薄い黒のオーバーレイ */
  z-index: 1;
}



@media screen and (max-width: 1410px) {
  .concept-item {
    height: 400px;
  }
}

.concept-item.concept01 {
  background-image: url(../img/concept01.jpg);
}

.concept-item.concept02  {
  background-image: url(../img/concept02.jpg);
}

.concept-item.concept03  {
  background-image: url(../img/concept03.jpg);
}

.concept-item.concept04  {
  background-image: url(../img/concept04.jpg);
}

.concept-item.concept05  {
  background-image: url(../img/concept05.jpg);
}

.concept-top-ttl {
  position: absolute;
  top: 50%;
  left: 5%;
  color: #FFF;
  z-index: 3;
  transform: translateY(-50%);
}

.concept-top-ttl span {
  font-family: "Montserrat", sans-serif;
  display: inline;
  font-size: 16px;
  font-weight: 300;
}

#concept-top .btn-02 {
	display: block;
	text-align: center;
	border-radius: 50px;
	text-decoration: none;
	width: max-content;
	padding: 1rem 4rem;
	font-weight: 700;
  background-color: #FFF;
	color: #3C3C3C;
  border: solid 1px #3C3C3C;
	cursor: pointer;
	position: relative;
 	overflow: hidden;
 	z-index: 1;
}

#concept-top .btn-02::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #3C3C3C;
	transform: translateX(-100%);
	transition: all .3s;
	z-index: -1;
}
#concept-top .btn-02:hover::before {
	transform: translateX(0);
}

#concept-top .btn-02:hover {
	color: #FFF;
}

@media screen and (max-width: 750px) {
  #concept-top .btn-02 {
    width: 100%;
    padding: 1rem;
  }
  #concept-top .btn-02 p{
    font-size: 14px;
  }
  #concept-top .section-ttl {
    text-align: left;
    margin-bottom: 40px;
  }
}


/* ==================

	about

=================== */

.nav-point{
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.nav-point li a{
  font-weight:700;
  font-size: 15px;
  display: block;
  padding: 5px 10px;
  border: solid 1px #3C3C3C;
  border-radius: 30px;
  background: #FFF;
}

.nav-point li a:hover{
  background: #F39800;
  color: #FFF;
}


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

  #page-about.section-page{
    padding: 0;
  }

  .nav-point{
    flex-direction: column;
    gap: 10px 0;
    justify-content: flex-start;
    margin-bottom: 0px;
    padding: 0 20px;
  }

  .nav-point li{
    width: 100%;
  }

}

.section-concept{
  display: block;
  margin: 0 auto 120px auto;
}

@media screen and (max-width: 750px) {
  .section-concept{
    padding: 0;
    margin: 0;
  }
}

#point .section-ttl{
  text-align: center;
  margin-bottom: 40px;
}

.section-concept__img{
  display: block;
}


.section-concept__img--wrap .section-concept__img {
  display: flex;
  gap: 0 20px;
}

.section-concept__img--wrap .section-concept__img > div {
  flex: 1;
}

.section-concept__img--wrap .section-concept__img img{
  width: 100%;
  height: 200px;
  object-fit: cover;
}

  .scroll-hint {
  display: none;
  }

@media (max-width: 1200px) {

  .section-concept__img--wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .section-concept__img--wrap .section-concept__img {
    display: flex;
    gap: 0 5px;
    min-width: fit-content;
  }

  .section-concept__img--wrap .section-concept__img > div {
    flex: 0 0 auto;
    width: 70%;
  }

  .section-concept__img--wrap .section-concept__img img {
    height: 200px;
    object-fit: cover;
    flex-shrink: 0;
  }

  .scroll-hint {
  display: block;
  font-size: 12px!important;
  margin-top: 6px;
  color: #F39800;
  }

}


.section-concept__ttl{
  width: 100%;
  background-color: #F39800;
  color: #FFF;
  text-align: center;
  margin-bottom: 40px;
  padding: 40px;
}


.section-concept__ttl p{
  font-size: 24px;
  font-weight: 700;
}

.section-concept__ttl span{
  font-size: 20px;
}

.section-concept__txt--ttl {
  font-size: 24px;
  font-weight: 700;
  border-bottom: 3px solid #e3e3e3;
  padding: 0.3em;
  margin-bottom: 0.3em;
  position: relative;
  margin-bottom: 20px;
}

.section-concept__txt--ttl::after {
  content: '';
  background-color: #F39800;
  width: 3em;
  height: 3px;
  position: absolute;
  bottom: -3px;
  left: 0;
  z-index: 1;
}

.section-concept__txt--subttl{
  font-size: 22px;
  font-weight: 700;
  padding: 0 0.6em;
  border-left: 4px solid #F39800;
  margin-bottom: 20px;
}

.section-concept__txt{
  padding: 40px 0;
  border-bottom: solid 1px #D9D9D9;
}

.section-concept .section-concept__txt:last-of-type {
  border-bottom: none;
}

.section-concept__txt p{
  margin-bottom: 20px;
}

.section-concept__txt--list li{
  display: inline-flex;
  gap: 0 2px;
  justify-content: flex-start;
}


.section-concept__txt .bold{
  font-weight: 700;
}


.section-concept__txt ul{
  padding-left: 1.5em;
}

.section-concept__txt ul li{
  list-style-type: disc;
  list-style-position: outside;
  margin-bottom: 10px;
}

.section-concept__txt ul li span{
  font-weight: 700;
}


@media screen and (max-width: 750px) {
  
  #section-concept .col-2{
    margin-bottom: 60px;
  }

.section-concept__ttl{
  margin-bottom: 20px;
  padding: 20px;
}

.section-concept__ttl span{
  font-size: 15px;
}

.section-concept__txt p{
  margin-bottom: 8px;
}

  .concept-sub-txt{
    padding: 0 5%;
  }


  #point .section-ttl{
    margin-bottom: 40px;
  }

  .section-concept__txt{
    padding: 20px 0 20px 0;
  }

  .section-concept__txt--ttl{
    margin-bottom: 20px;
    font-size: 16px;
  }
  

  .concept-sub-item br{
    display: none;
  }

  .row{
    flex-direction: column;
  }



  .section-concept__txt ul{
  padding-left: 1.3em;
}

  }


  #guidelines{
    padding: 0;
    margin: 0 auto;
  }


  #guidelines .section-ttl{
    text-align: center;
    margin-bottom: 40px;
  }


  .guidelines p{
    margin-bottom: 20px;
  }

  .readmore {
    position: relative;
    margin: 50px auto 0 auto;
    padding: 30px 30px 75px 30px;
    background-color: #f4f3ef;
  }
  
  .readmore label {
    position: absolute;
    display: table;
    left: 50%;
    bottom: 0;
    margin: 0 auto 20px auto;
    width: 200px;
    padding: 10px 0;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    background-color: #F39800;
    transform: translateX(-50%);
    cursor: pointer;
    z-index: 1;
  }
  
  .readmore label::before{
    content: '続きを読む';
  }
  
  .readmore input[type="checkbox"]:checked ~ label::before {
    content: '元に戻す';
  }
  
  .readmore input[type="checkbox"]{
    display: none;
  }
  
  .readmore-content {
    position: relative;
    height: 180px;
    overflow: hidden;
  }
  
  .readmore input[type="checkbox"]:checked ~ .readmore-content {
    height: auto;
  }

  .guideline-ttl{
    padding: 10px;
    background-color: #FFF;
    margin-bottom: 15px;
    width: max-content;
    font-weight: 700;
  }

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

    .guideline-ttl{
      width: 100%;
      text-align: center;
    }

    .readmore{
      font-size: 15px;
      margin: 0;
      padding: 20px 20px 100px 20px;
    }

    .readmore:last-of-type {
      margin: 20px auto 0 auto;
    }


  }
  


  

/* ==================

	section-profile

=================== */


#profile .contents{
  padding: 0 10%;
}

#profile .section-ttl{
  text-align: left;
}

#profile h5{
  margin-bottom: 12px;
}

#profile .btn-wrap{
  text-align: center;
}

#profile .btn-01{
  margin-top: 40px;
  justify-content: flex-start;
}

#profile .col-2{
  justify-content:flex-start;
  gap: 60px;
  align-items: stretch;
  margin: 0 auto;
}

#profile .txt-item{
  width: 55%;
}

#profile .img-item{
  width: 25%;
  height: auto;
}

#profile .img-item img{
  width: 100%; /* 幅を100%に設定 */
  height: 100%; /* 高さを自動にして縦横比を維持 */
  object-fit: contain; /* 画像がコンテナに収まるようにする */
}

@media screen and (max-width: 750px) {
  #profile .contents{
    padding: 60px 20px;
  }

  #profile .col-2{
    flex-direction: column;
    gap: 40px;
  }

  #profile .txt-item{
    width: 100%;
  }

  #profile .img-item{
    width: 100%;
    margin: 0 auto;
  }

  #profile .txt-item h5{
    font-size: 18px;
  }

}

/* ==================

	section-news

=================== */

#news{
  position: relative;
  background-color: #FAF8F6;
}

#news.section{
  padding: 0;
}

#news .contents {
  padding: 5% 10%;
  position: relative;
  background-color: #FFF;
  width: 90%;
  border-radius: 0 30px 30px 0;
}

#news .col-2{
  align-items:flex-end;
  gap: 0 60px;
  justify-content: space-between;
}

#news .col-2 > div{
  width: auto;
}

#news .btn-01{
  justify-content: flex-start;
}

#news .photo-text {
  display: block;
  margin-top: 10px;
  text-align: left;
}



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

  #news .col-2{
    align-items: flex-start;
    gap: 20px 0;
  }

  #news .contents {
    padding: 40px 20px;
    width: 100%;
    border-radius: 0;
  }

  #news .slick__images{
    padding: 40px 0 60px 0;
  }
  
}

.news-about{
  margin-bottom: 60px;
  padding: 30px 0;
  border-bottom: solid 1px #ccc;
}

.news-about img{
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center;
}

.news-article h5{
  margin-top: 40px;
  margin-bottom: 10px;
}

.news-article{
  margin-bottom: 60px;
}

.news-img-area {
  display: flex;
  gap: 0 10px;
  flex-wrap: nowrap; /* 折り返しを防ぐ */
}

.news-img-area img {
  width: calc(50% - 5px); /* ギャップの分を差し引く */
  object-fit: cover; /* 画像がコンテナに収まるようにする */
}


/* ==================

	section-book

=================== */

#book {
  position: relative;
  background-color: #FAF8F6;
}

#book .contents {
  padding: 5% 10%;
  position: relative;
  background-color: #FFF;
  width: 90%;
  border-radius: 30px 0 0 30px;
  margin-left: auto; /* セクションを右に寄せる */
}

#book .col-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4つの列を作成 */
  gap: 20px; /* 要素間のスペース */
}

#book .col-2 {
  align-items: flex-end;
  gap: 0 60px;
  justify-content: space-between;
}

#book .col-2 > div {
  width: auto;
}

#book .btn-01 {
  justify-content: flex-start;
}

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

  #book .col-4 {
    grid-template-columns: repeat(3, 2fr); /* 4つの列を作成 */
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    margin-top: 40px;
  }

  #book .col-4 > div {
    width: 33.33%;
  }

  #book .photo-img {
    width: 100px;
  }


  #book .wp-post-image{
    height: auto;
  }

  #book .contents {
    padding: 40px 20px;
    width: 100%;
    border-radius: 0px;
    margin: 0 auto; /* モバイルでは中央揃えに戻す */
  }

  #book .col-2 {
    align-items: flex-start;
    gap: 20px 0;
  }


}


/* ==================

	section-interview

=================== */

#interview .col-2{
  align-items: flex-end;
}


.slick__inner {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 0 20px;
}

.slick__container {
  position: relative;
  /* インナー幅から片側をはみ出させる */
  width: calc(100% + (100vw - 100%) / 2);
  /* / インナー幅から片側をはみ出させる */
}

.slick__images {
  padding: 60px 0;
  background: #fff;
}

.slick__prev,
.slick__next {
  position: absolute;
  bottom: 0;
  z-index: 1;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #18212b;
  background: #fff;
}

.slick__prev {
  /* (インナー幅の左端) - (ボタンの大きさ + ボタンとの間隔) */
  left: calc(0px);
}

.slick__next {
  /* (インナー幅の左端) + (画像のマージン + ボタンとの間隔) */
  left: calc(30px + 35px);
}

.slick__prev:before,
.slick__next:before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 1px solid #18212b;
  border-right: 1px solid #18212b;
  opacity: 1;
  content: '';
}

.slick__prev:before {
  transform: translate(-25%, -50%) rotate(-135deg);
}

.slick__next:before {
  transform: translate(-75%, -50%) rotate(45deg);
}

.slick__image {
  position: relative;
  width: 310px;
  margin-right: 30px;
  margin-bottom: 20px;
  height: 200px; /* 必要に応じて高さを調整 */
}


#interview .photo-text {
  display: block;
  margin-top: 10px;
  text-align: left;
}

@media screen and (max-width: 750px) {
  #interview .slick-slider{
    padding: 40px 0 60px 0;
  }

}

/* ==================

  section-visit
  section-learn
	section-introduce

=================== */


#introduce .col-2,
#visit .col-2,
#learn .col-2{
  gap: 0 30px;
  justify-content: center;
}

#visit .col-2 > div,
#learn .col-2 > div,
#introduce .col-2 > div{
  width: 50%;
}

#visit .txt-item p,
#learn .txt-item p,
#introduce .txt-item p{
  width: 80%;
}

#visit .img-item,
#learn .img-item,
#introduce .img-item{
  width: 100%;
}

#visit .img-item img,
#learn .img-item img,
#introduce .img-item img{
  width: 100%;
  height: 500px;
  object-fit: cover;
}

#learn.section{
  padding: 60px 0;
}

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

  #learn.section,
  #visit.section,
  #learn.section{
    padding: 0px;
  }

  #learn .contents,
  #visit .contents{
    padding-bottom: 0px;
  }

  #introduce .col-2,
  #visit .col-2,
  #learn .col-2{
  flex-direction: column-reverse;
  gap: 20px 0;
}


#visit .col-2 > div,
#learn .col-2 > div,
#introduce .col-2 > div{
  width: 100%;
}

#visit .txt-item p,
#learn .txt-item p,
#introduce .txt-item p{
  width: 100%;
}

#visit h1,
#learn h1,
#introduce h1{
  font-size: 26px;
}


#learn .img-item img,
#visit .img-item img,
#introduce .img-item img{
  margin-top: 0px;
  height: 236px
}

}


/* ==================

  Instagram

=================== */

#instagram .section-ttl{
  text-align: center;
  margin-bottom: 40px;
}

#instagram{
  padding: 120px 0;
  height: auto;
}

#instagram h3{
  display: block;
  font-weight:500;
  font-size: 28px;
  line-height: 150%;
  text-align: center;
  margin-bottom: 40px;
}

#instagram .contents{
  padding: 0 10%;
}

#eapps-instagram-feed-1 .eapps-instagram-feed-posts-grid-load-more-text{
  font-family: "Zen Maru Gothic", sans-serif!important;
}

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

  #instagram{
    padding: 60px 0;
  }

  #instagram .contents{
    padding: 0px 20px;
  }

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

}



/* ==================

  section-gt

=================== */

#gt {
  position: relative;
  display: flex;
  gap: 0 60px;
  justify-content: center;
  padding: 10%;
  background-image: url(../img/gt.jpg);
}

#gt::before{
  content: ""; /* 擬似要素を表示させるための必須 */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* 黒の50%透明 */
  z-index: -1; /* 他のコンテンツが上に表示されるように */
}

.gt-item{
  width: calc((100% - 40px) / 2);
  background-color: rgba(255, 255, 255, 0.8);
  padding: 40px;
}

#gt .btn-01 {
  color: #3C3C3C;
}

.gt-item p{
  margin: 20px 0;
}

@media screen and (max-width: 1440px) {
  #gt {
    flex-direction: column;
    gap: 20px 0;
    margin: 0 auto;
    padding: 60px 10%;
  }

  .gt-item{
    width: 100%;
  }
  
}

@media screen and (max-width: 750px) {
  #gt {
    flex-direction: column;
    gap: 20px 0;
    padding: 60px 20px;
  }

  .gt-item{
    padding: 20px;
  }
  
}


/* ==================

  section-company

=================== */

.company {
  display: flex;
  flex-wrap: wrap;
}

.company dt{
  width: 20%; /* 各項目を半分ずつの幅に */
  padding: 10px 0;
  border-bottom: solid 1px #3C3C3C;
  font-weight: 700;
}

.company dd{
  width: 80%; /* 各項目を半分ずつの幅に */
  padding: 10px 0;
  border-bottom: solid 1px #3C3C3C;
}



@media screen and (max-width: 750px) {
  .company {
    flex-direction: column;
  }

  .company dt{
    border-bottom: none;
    padding: 0;
  }

  .company dd{
    padding-top: 0;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }

  .company dt,
  .company dd{
    width: 100%;
  }
}


/* ==================

 contents-page

=================== */

.ttl{
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .12em;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #f4f3ef;
  z-index: 1;
  font-family:"Zen Maru Gothic", sans-serif;
}

#page-title {
  height: 300px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

#page-title img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

#page-title:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

#contents-page{
  padding: 5% 0;
}

#contents-page h1{
  font-size: 32px;
}

#contents-page h2{
  font-size: 28px;
}

#contents-page h3{
  font-size: 24px;
}

#contents-page h4{
  font-size: 20px;
}

#contents-page h5{
  font-size: 18px;
}

.section-page{
  padding: 3% 10%;
}

.bg-creem{
  background-color: #f4f3ef;
}

.bg-white{
  background-color: #FFF;
}

.attention{
  display: inline-block!important;
  color: #D45346!important;
  font-size: 12px!important;
  line-height: 170%!important;
  letter-spacing: 0.02em!important;
}

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

  #contents-page{
    padding: 10% 0;
  }

  .section-page{
    padding: 0px 20px;
    margin-bottom: 40px;
  }

 .ttl{
  font-size: 20px!important;;
  line-height: 1.5;
 }

 #page-title {
  height: 200px;
}

#contents-page h3{
  font-size: 20px;
}

#contents-page h4{
  font-size: 16px;
}

}

/* ==================

 visit

=================== */

#flow .item-wrap{
  margin-top: 0;
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: solid 1px #cccccc;
}

#flow h3{
  margin-bottom: 20px;
}

#flow .col-2{
  display: flex;
  gap: 0 5px;
}


#flow span{
  display: block;
  font-weight:700;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: .12em;
  color: #F39800;
}

.number{
  display: block;
  font-weight:700;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: .12em;
  color: #F39800;
  margin-right: 10px;
}

.number a{
  color: #F39800;
}

.map-wrap{
  width: 800px;
  margin-top: 20px;
}

#flow .btn-wrap{
  margin-top: 20px;
}

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

  #flow .txt-wrap{
    margin-bottom: 40px;
  }

  .flow-item{
    padding: 40px 0;
  }

  .flow-item:last-of-type{
    padding: 40px 0;
  }

  #flow span{
    font-size: 16px;
    margin-bottom: 10px;
    letter-spacing: 0em;
  }

  .number{
    font-size: 20px;
    letter-spacing: 0em;
  }

  .map-wrap{
    width: 100%;
  }
}


/* ==================

 learn

=================== */

#seminar .col-2{
  align-items:flex-end;
  gap: 0 60px;
  justify-content: space-between;
}

#seminar .col-2 > div{
  width: auto;
}

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

  #seminar .col-2{
    align-items:flex-start;
    gap: 10px 0;
    justify-content: space-between;
  }
  
  #seminar .col-2 > div{
    width: auto;
  }
  
  #seminar .btn-01{
    justify-content: flex-start;
  }

  #seminar .col-4{
    margin-bottom: 0;
  }

}

#seminar .btn-01{
  justify-content: flex-start;
}


#youtube h4 {
  position: relative;
  padding: 0.6em;
  background: #F39800;
  margin-bottom: 20px;
}

#youtube h4:after {
  position: absolute;
  content: '';
  top: 100%;
  left: 30px;
  border: 15px solid transparent;
  border-top: 15px solid #F39800;
  width: 0;
  height: 0;
}

.youtube-item{
  margin: 60px auto 80px auto;
}

.youtube-item:last-of-type{
  margin-bottom: 0;
}


/* ==================

 introduce

=================== */

#guide{
  text-align: center;
}

.problem{
  margin: 40px auto;
  background-color: #D45346;
  padding: 40px;
  width: fit-content;
}

.problem li{
  display: flex;
  align-items: flex-start;
  gap: 0 8px;
  color: #FFF;
}

#guide h1{
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}

@media screen and (max-width: 750px) {
  .problem{
    padding: 20px 10px;
  }

  #guide h1{
    font-size: 20px;
    font-weight: 700;
  }
}

.problem li p{
  text-align: left;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 10px;
}

.problem li p:last-of-type{
  margin-bottom: 0;
}

.emphasize{
  font-weight: 700;
  color: #D45346;
  border-bottom: 3px dotted #D45346;
}


#plan .section-ttl{
  margin-bottom: 40px;
  text-align: center;
}


.plan{
  padding: 20px;
  background-color: #FFF;
  text-align: left;
  margin: 0 auto 40px auto;
  max-width: 1200px;
}

.plan.pink{
  border-top: solid 5px #DC9898;
}

.plan.blue{
  border-top: solid 5px #677698;
}

.plan.green{
  border-top: solid 5px #7fbaaa;
}

.plan-item{
  padding: 20px 0;
  border-bottom: solid 1px #e6e6e6;  
}

.plan-item:last-of-type{
  border-bottom: none;
}

.plan-item__ttl{
  font-weight: 700;
  margin-bottom: 10px;
}

.plan-list li{
  display: flex;
  align-items: flex-start;
  gap: 0 8px;
}

.plan-list .bold{
  font-weight: 700;
}

.plan-list .red{
  color: #D45346;
}


@media screen and (max-width: 750px) {
  .plan{
    max-width: 100%;
  }
}


/* ==================

  contact

=================== */


#contact{
  text-align: center;
}


.cf-area {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 2em 0;
	border-bottom: 1px dashed #ccc;
	transition: all .3s;
  max-width: 800px;
  margin: 0 auto;
}

.cf-area:last-child {
	border-bottom: none;
}

.cf-area dt {
  width: 200px;
  padding-right: 30px;
  text-align: right;
	line-height:1.5em;
}

.cf-area dd {
    flex: 1;
}

.cf-area input, .cf-area textarea {
  width: 100%;
  padding: 0.8em;
  border: none;
  background-color: #e6e6e6;
  font-size: 16px;
	resize: vertical;
	transition: all .3s;
}

.cf-area input:focus,.cf-area textarea:focus {
	outline: none;
	background: #dde2e9;
}

.cf-required {
	background: #D45346;
	color: #fff;
	font-size: 0.8em;
	padding: 0 5px 2px;
	border-radius: 2px
}

.cf-send input {
  margin: 20px auto 0 auto;
  display: block;
  text-align: center;
  text-decoration: none;
  width: 250px;
  padding: 1rem 4rem;
  font-weight: 700;
  background-color: #F39800;
  color: #FFF;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cf-send input:hover {
	filter: brightness(1.25);
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
	background-color: #fce3e3;
	border: none;
	text-align: center;
}

#inquiry-type {
  height: 40px;
  text-align: left;
  display: block;
  font-size: 16px;
  padding: 6px;
}


.checkbox p{
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkbox input[type="checkbox"] {
  margin-right: 10px;
}

.cf-send input {
  font-size:16px;
}

@media screen and (max-width:768px){
	.cf-area {
    padding: 1em 0;
		display: block;
	}

	.cf-area dt {
    width: 100%;
		margin-bottom: 5px;
    padding-right: 0;
    text-align: left;
		line-height:1.5em;
	}

  .checkbox span{
    font-size: 14px;
  }
}

/* ==================

  footer

=================== */

#page_top {
  position: fixed;
  right: 10px;
  width: 55px;
  height: 55px;
  bottom: 16px;
  background: #F39800;
  border-radius: 50px;
  z-index: 3;
}

#page_top a::before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 25px;
  height: 25px;
  margin: auto;
  color: #fff;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f077';
  font-size: 25px;
  text-align: center;
}

.footer.section{
  height: auto;
  padding: 120px 0;
}

.footer{
  background-color: #F39800;
  color: #f4f3ef;
  text-align: left;
}

.footer a{
  text-decoration: none;
  color: #f4f3ef;
}

.footer__logo img{
  width: 200px;
}

.footer-inner{
  padding: 0 10%;
}

.footer__about a p{
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.68px;
  margin-bottom: 20px;
}

.footer__about a p span{
  display: block;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: .12em;
}

.footer__about p{
  font-size: 14px;
  font-style: normal;
  line-height: normal;
  letter-spacing: .12em;
}


.footer__nav{
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0 70px;
  padding: 40px 0;
  border-bottom: solid 1px;
  margin-bottom: 20px;
}

.footer__nav ul li{
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: .12em;
  margin-bottom: 16px;
}

.copy{
  font-size: 10px;
}

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

  .footer.section{
    padding: 0;
  }

  
  .footer-inner{
    margin-left: 0px;
    padding: 60px 20px;
  }

  .footer__nav{
   display: none;
  }

  .footer__logo img{
    width: 150px;
  }

  .copy{
    font-size: 8px;
  }
  
}

/* ==================

  プラグイン

=================== */

.pt-cv-content-item{
  background-color: #FFF;
  padding: 20px;
}

.pt-cv-thumb-wrapper{
  margin: 0 auto;
}

.book-ttl{
    font-size: 16px;
    font-weight: 700;
}

.book-txt{
  font-size: 14px;
}

#page-book .btn-wrap{
  text-align: center;
  padding: 20px 0;
}


/* ==================

  animation

=================== */


.scroll-up {
  opacity: 0; 
  visibility: hidden;
  transform: translateY(50px);
  transition: all 1s;
}
.scroll-up.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.load-fade {
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
}
.load-fade.is-show {
  opacity: 1;
  visibility: visible;
}




/* ==================
  タブ切り替え
=================== */

.tab-ttl{
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.tab-container {
  margin: 0 auto;
}

.tab-labels {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
}

.tab-labels label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: #fff;
  cursor: pointer;
  text-align: center;
  flex: 1;
  box-sizing: border-box;
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 768px) {

  .tab-container{
    padding-top: 10%;
  }

  .tab-labels {
    gap: 10px;
    padding: 0 20px;
  }

  .tab-labels label {
    flex: 0 0 calc(50% - 5px);
    font-size: 16px;
  }
}


.tab-content {
  display: none;
  padding: 40px;
  background-color: #FFF;
}

@media screen and (max-width: 768px) {
  .tab-content {
  padding: 20px;
}
}

/* タブ切り替え */
#tab1:checked ~ .tab-content#content1,
#tab2:checked ~ .tab-content#content2,
#tab3:checked ~ .tab-content#content3,
#tab4:checked ~ .tab-content#content4 {
  display: block;
}

/* チェックボックスを非表示に */
input[type="radio"] {
  display: none;
}

/* 選択中のタブのスタイル */
#tab1:checked ~ .tab-labels label[for="tab1"],
#tab2:checked ~ .tab-labels label[for="tab2"],
#tab3:checked ~ .tab-labels label[for="tab3"],
#tab4:checked ~ .tab-labels label[for="tab4"] {
  background: #F39801;
  color: #FFF;
}

.txt-point{
  color: #F39800;
  font-weight: 700;
}

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

  .tab-labels label{
    width: 50%;
  }
}


/* 目次 */

.toc-wrap{
  width: 100%;
  border-top: solid 1px #D9D9D9;
  padding-top: 40px;
}

.toc {
  width: 600px;
  background-color: #FAFAFA;  
}

.toc div {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 10px 0;
  background-color: #F39800;
  color: #fff;
}

.toc div::before {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 5px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8 4H21V6H8V4ZM3 3.5H6V6.5H3V3.5ZM3 10.5H6V13.5H3V10.5ZM3 17.5H6V20.5H3V17.5ZM8 11H21V13H8V11ZM8 18H21V20H8V18Z' fill='%23fff'%3E%3C/path%3E%3C/svg%3E");
  content: '';
}

.toc ol {
  list-style-type: decimal;
  margin: 0;
  overflow: hidden;
}

.toc > ol {
  padding: 1em 1em 1em 3em;
}

.toc ol ol {
  margin-top: 5px;
  padding-left: 1.1em;
}


.toc li {
  padding: 5px 0;
}


.toc a {
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .toc {
  width: 100%;
  margin-bottom: 40px;
  font-size: 15px;
  }

  .section-concept p,
  .section-concept ul,
  .section-concept ul li,
  .section-concept span{
    font-size: 15px;
  }

  #section-concept-1,
  #section-concept-2,
  #section-concept-3,
  #section-concept-4,
  #section-concept-5,
  #section-5m-1,
  #section-5m-2,
  #section-5m-3,
  #section-5m-4,
  #section-5m-5{
    scroll-margin-top: 50px;
  }

}

#section-concept-5 .section-concept__img--flex{
  display: flex;
  gap: 20px;
  align-items: center;
}

#section-concept-5 .section-concept__img--flex img{
  width: calc((100% - 40px) / 3); 
  object-fit: cover;
  display: block;
}

@media screen and (max-width: 768px) {
  #section-concept-5 .section-concept__img--flex.pc{
    display: none;
}

  #section-concept-5 .section-concept__img img{
    height: 350px;
}

}


.section-concept__point{
  padding: 0 2em;
  font-size: 14px;
}


.section-concept__point li{
  list-style-type: disc;
  list-style-position: outside;
}


#content3 .section-concept{
  margin-bottom: 0;
}


#content3 .section-concept__txt{
  padding: 0;
}

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

  .section-concept__point{
  padding: 0 2em;
  width: 100%;
  font-size: 12px;
}
}

.fiveem-wrap{
  display: flex;
  gap: 40px 20px;
  justify-content: center;
  padding: 20px;
  background-color: #FAFAFA;
}

.fiveem-item {
  width: 250px;
  height: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.fiveem-item img {
  width: 150px;
  margin-bottom: 10px;
}

.circle-icon img {
  width: 100%;
  height: auto;
}

.fiveem-item h3{
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  font-family: 'Noto Sans', sans-serif;
}

.fiveem-item h3 span {
  display: block;
  font-size: 14px;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
}

.fiveem-item p{
  font-size: 14px;
  padding: 20px;
}

.fiveem-sp{
  display: none;
}

@media screen and (max-width: 1400px) {
  .fiveem-wrap{
  flex-wrap: wrap;
}
}

@media screen and (max-width: 768px) {
  .fiveem-wrap{
    display: none;
  }

  .fiveem-sp{
    display: block;
  }
}