/*---------------------------------------------------------------------------------------------
初期設定 
----------------------------------------------------------------------------------------------*/

@charset "UTF-8";
* {
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Shippori+Mincho",sans-serif;
  color: #707070;
}
body {
  overflow-x: hidden;
}
p {
  font-size: 14px;
}
@media screen and (min-width:1025px){
  p {
    font-size: 16px;
  }
}
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

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

h2,
h3,
h4,
h5,
h6,
hr {
  clear: both;
  margin-bottom: 0;
}

:root {
  /* --color-accent-green: #2CA89C;
  --color-accent-yellowgreen: #E8F5B9;
  --color-accent-yellowgreen2: #AFD34E;
  --color-accent-green02: rgb(191 232 214 / 39%);
  --color-accent-green03: #A6CEAB;
  --color-main-black: #333;
  --color-main-brown: #A27777; */

  /* --color-main-blue: ##6eced5; */
  --color-main-blue: #73e2e8;
  /* --color-accent-brown: #9b6638; */
  --color-accent-gray: #7b6d61;

}

/* 
@media screen and (min-width: 768px) {
  .pc-dsp {
    display: block;
  }
  .sp-dsp {
    display: none;
  }
  /* .br-pc {
    display: block; }

  .br-sp {
    display: none; } 
}*/
@media screen and (max-width: 768px) {
  .pc-dsp {
    display: none;
  }
  .sp-dsp {
    display: block;
  }
  /* .br-pc {
    display: none; }

  .br-sp {
    display: block; } */
}

/*---------------------------------------------------------------------------------------------
header
----------------------------------------------------------------------------------------------*/
header {
  width: 100%;
  background-color: var(--color-main-blue);
  top: 0;
  z-index: 100;
  font-weight: bold;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
}

header .logo {
  /* width: 75%; */
  padding: 8px;
  max-width: 80px;
  width: 100%;
  min-width: 45px;
}
.company-area{
  margin-left:3px;
  white-space: nowrap;
  line-height:1.3;
  display: flex;
  flex-direction: column;
}
.company-area h2{
  font-family: "Oswald";
  letter-spacing: 0.15em;
  color: #fff;
  font-size: 1.8rem;
}
.company-area h3 {
  font-family: "Shippori+Mincho";
  color: #444;
  font-size:10px;
  text-align: left;
}
.company-area div {
  font-family: "Shippori+Mincho";
}


.headerSpImg {
  width: 85%;
  margin-left: 0;
  margin-top: -5px;
  z-index: 1;
}
/* scrolldown */
.scroll_down{
  position:absolute;
  bottom: 0px;
  /* left: 50%; */
  z-index: 1;
  right: 40px;
}

.scroll_down a{
  position: absolute;
  left: 10px;
  bottom: 100px;
  color: #000;
  font-size: 14px;
  font-family: 'Josefin Sans', sans-serif;
  letter-spacing: .2em;
  writing-mode: vertical-lr;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll_down:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background:#000;
  animation:
    circlemove 1.6s ease-in-out infinite,
    cirlemovehide 1.6s ease-out infinite;
}

@keyframes circlemove{
  0%{bottom:160px;}
  100%{bottom:0px;}
}

@keyframes cirlemovehide{
  0%{opacity:0}
  50%{opacity:1;}
  80%{opacity:0.9;}
  100%{opacity:0;}
}

.scroll_down:after{
  content:"";
  position: absolute;
  bottom:0;
  left:0;
  width:2px;
  height: 175px;
  background:#000;
}
/* scrolldown end */
.drawer-menu li {
  opacity: 0;
  transform: translateY(20px);
}

.drawer-menu.active li {
  opacity: 1;
  transform: translateY(0);
}.drawer-menu li:nth-child(1) {
  transition: 0.5s 0.15s;
}

.drawer-menu li:nth-child(2) {
  transition: 0.5s 0.3s;
}

.drawer-menu li:nth-child(3) {
  transition: 0.5s 0.45s;
}

.drawer-menu li:nth-child(4) {
  transition: 0.5s 0.6s;
}
.drawer-menu li:nth-child(5) {
  transition: 0.5s 0.75s;
}

.drawer-menu li:nth-child(6) {
  transition: 0.5s 0.9s;
}

.drawer-menu li:nth-child(7) {
  transition: 0.5s 1.05s;
}

@media screen and (min-width: 1025px) {
  header {
    display: flex;
    flex-direction: column;
    height: auto;
    /* margin-top: 2rem; */
  }
  header h2 {
    color: #6ECED5;
    font-weight: bold;
  }
  
  .pc-header-top {
    display: flex;
    justify-content: center;
    background: #fff;
    width: 100%;
    /* padding: 10px 12px; */
  }
  .pc-header-top .inner{
    max-width: 1200px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 10px 0;
  }

  .pc-header-left {
    display: flex;
    align-items: center;
  }
  .pc-header-left .logo {
    width: 70px;
    padding: 0 8px;
    margin-bottom: 0;
  }
  .pc-company {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .pc-company h2{
    font-size: 32px;
    font-family: 'Oswald',sans-serif;
    letter-spacing: 0.15em;
  }

  .pc-company h3 {
    margin-bottom: 0;
    color: #62472d;
    font-size: 14px;
    font-weight: bold;
  }
  .pc-contact-text {
    font-size: 18px;
    color: #62472d;

  }
  .pc-contact-text span{
    font-size: 14px;
    color: #62472d;

  }

  .pc-nav {
    display: flex;
    justify-content: center;
    background: var(--color-main-blue);
    width: 100%;
    /* padding: 26px 12px; */
    padding: 18px 12px;
  }
  .pc-nav ul{
    max-width: 1200px;
    display: flex;
    width: 100%;
    justify-content: space-between;  
    margin-bottom: 0;
    padding-left: 0;
  }
  .pc-nav ul li{
    color: #fff;
  }
  .header-contact{
    display: flex;
    gap: 20px;
    align-items: center;
  }
  .scroll_down {
    right: 157px;
}
}
/*---------------------------------------------------------------------------------------------
front-page top
----------------------------------------------------------------------------------------------*/
.section-spfv {
  background: var(--color-main-blue);
  padding-bottom: 60px;
  /* margin-top: -1px; */
  /* margin-top: 3rem; */
  padding-top: 5.3rem;
}
.swiper {
  border-radius: 0 2rem 0rem 0;
  margin-top: 0rem;
  height: calc(100vh - 80px);
}

/* トップ画像スライダー */
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
    transform-origin: center bottom;
  }
}
.swiper-slide-active .swiper-img,
.swiper-slide-duplicate-active .swiper-img,
.swiper-slide-prev .swiper-img {
  animation: zoomUp 7s linear 0s normal both;
}
.swiper-slide {
  overflow: hidden;
  height: 100%;
}
.swiper-wrapper {
  overflow: hidden;
}
.swiper {
  overflow: hidden;
}
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.fv-copy {
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 7%;
  /* left: 50%; */
  /* transform: translateX(-50%); */
  padding: 5%;
  animation: lineanime 2s forwards;
  font-size: 2rem;
  font-weight: bold;
  /* color: #FD7500; */
  color: #6a533c;

  letter-spacing: .2rem;
  line-height: 3.6rem;
  /* 確認 */
  /* text-shadow: 1px 1px 4px rgb(247 125 17 / 81%); */
  width:max-content;
  white-space: nowrap;
}

.fv-copy::before{
  content: "";
  position: absolute;
  inset: 0;

  /* 家型 */
  clip-path: polygon(
    50% 0%,
    100% 20%,
    100% 100%,
    0% 100%,
    0% 20%
  );

  background: rgba(255,255,255,0.9);

  z-index: -1;

  /* 文字周りより大きく */
  /* top: -60px; */
  /* top: 15px; */
  top: -31px;
  /* left: -60px; */
  /* left: 0px; */
  left: -17px;
  /* right: -60px; */
  /* right: 0px; */
  right: -26px;
  /* bottom: -60px; */
  /* bottom: -16px; */
  bottom: -5px;
}
.fv-copy-span{
  color: orange;
  font-size: 2.2rem;
}

.fv-copy2 {
  /* position: absolute;
  z-index: 101;
  top: 5.3rem;
  right: 1%;
  padding: 2%;
  animation: lineanime 2s forwards;
  font-size: 1.6rem;
  font-weight: bold;
  color: #9a6538;
  background: #fff;
  white-space: nowrap;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50px;
  position: fixed;
  border: 1px solid #9a6538; */
  position: fixed;
  top: 5.3rem;
  right: 1%;
  z-index: 101;

  width: 50px;
  height: 50px;
  padding-top: 5px;

  display: flex;
  justify-content: center;
  align-items: center;

  background: #fff;
  border: 1px solid #9a6538;
  border-radius: 50%;
}
.fv-copy2 i {
  font-size: 24px;
  /* color: #9a6538; */
  color: var(--color-accent-gray);
}
.fv-copy3 {
  position: absolute;
  /* position: relative; */
  z-index: 102;
  /* top: 22rem; */
  /* bottom: 1rem; */
  /* bottom: 0; */
  top: 9.3rem;
  /* left: 1rem; */
  /* right: 0%; */
  right: 1%;
  /* left: 50%; */
  /* transform: translateX(-50%); */
  /* padding: 2%; */
  animation: lineanime 2s forwards;
  font-size: 1.6rem;
  font-weight: bold;
  /* color: #9a6538; */
  /* background: #fff; */
  /* 確認 */
  /* text-shadow: 1px 1px 4px rgb(247 125 17 / 81%); */
  /* width:max-content; */
  white-space: nowrap;
  width: 50px;
  height: 50px;
  /* background: #fff; */
  /* border-radius: 50px; */
  position: fixed;
  /* border: 1px solid #9a6538; */
}
.section-pcfv {
  display: flex;
  background: var(--color-main-blue);
  height: calc(100vh - 80px);
  margin-top: 170px;
  padding-top: 7px;
}


@media screen and (min-width: 800px) {
  
  .swiper {
    /* height: calc(100vh - 80px); */
    height: auto;
    width: 90%;
    object-fit: cover;
  }
}

@media screen and (min-width: 1025px) {

  .fv-copy::before{
    bottom: 1px;
  }
  
  /* .swiper {
    border-radius: 0;
  } */
  .section-spfv {
    background: var(--color-main-blue);
    padding-bottom: 60px;
    /* margin-top: -1px; */
    /* margin-top: 5rem; */
    padding-top: 2.3rem;
  }
  
  
  .section-pcfv {
    display: flex;
    background: var(--color-main-blue);
    /* height: calc(100vh - 80px); */
    height: auto;
    /* margin-top: 170px;
    padding-top: 7px; */
    margin-top: 0px;
    padding-top: 146px;
  }
  .fv-copy {
    position: absolute;
    /* top: 30rem; */
    /* bottom: auto; */
    bottom: 40px;
    font-size: 3rem;
    line-height: 5.6rem;
    color: #6a533c;
  }  
  .fv-copy-span{
    font-size: 4rem;
  }
  
  .fv-child1 {
    width: 80%;
    /* height: 100%; */
    height: calc(100vh - 187px);
    margin-left: 0;
  }
  .fv-child1 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 0%;
    /* border-radius: 0 140px 0 0; */
  }
  
}

/*---------------------------------------------------------------------------------------------
front-page news
----------------------------------------------------------------------------------------------*/
.newsBox {
  font-size: 0.8rem;
  /* width: 90%; */
  /* background-color: #fff; */
  /* border-radius: 10px; */
  /* box-shadow: 0px 3px 6px 0px #777777; */
  /* border: 1px solid; */
  /* margin-left: 12rem; */
  /* margin-top: -22rem; */
  /* padding: 1.3rem 2rem; */
  /* z-index: 0; */
}
/* .newsBox:hover {
  background-color: #fff;
} */
/* ボタン */
/* .newsBox:hover {
  color: var(--color-accent-green02);
}
.newsBox:hover .arrow_btn.arrow_03::after {
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
}
.newsBox:hover .arrow_03::before {
  background: var(--color-accent-yellowgreen2);
  border: 2px solid #fff;
} */

.news {
  /* font-family: "Noto Sans JP", sans-serif; */
  font-weight: 400;
  font-style: normal;
  /* color: #1b2c43; */
  color: #9b6638;
  /* color: #62472d; */
  font-size: 3rem;
  font-size: 1.7rem;
}
.news-item {
  border-bottom: 1px solid #b9b9b9;
  margin-bottom: 10px;
  padding: 5px 0
}
.topNews {
  display: flex;
  flex-direction: column;
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 1rem;
}
/* 003  btnMore*/
.btnMore {
  display: flex;
  justify-content: flex-end;
}
/* 003 */
.button003 {
  margin: 0 auto;
}
.button003 a {
  /* background: #1b2c43; */
  /* background: #9b6638; */
  background: var(--color-accent-gray);
  border-radius: 50px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 260px;
  padding: 10px 38px;
  color: #fff;
  transition: 0.3s ease-in-out;
  font-weight: 500;
}
.button003 a:hover {
  background: #FFE34E;
  color: #FFF;
}
.button003 a:after {
  content: '';
  width: 8px;
  height: 8px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 23px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}
.button003 a:hover:after {
  border-color: #FFF;
}
/* 003  btnMoreここまで*/
.fv__bottom__slider {
  width: 100%;
}
.spmaincontainer {
  position: relative;
  /* background-color: #05A369; */
}
.topBg-sp {
  margin-top: -17rem;
}
.newsSection {
  width: 100%;
  /* background: #6eced5; */
  background: #fcf5eb;
}
.contactSection {
  width: 100%;
  /* background: #6eced5; */
  background: #fcf5eb;
}

.newsSection .inner {
  /* max-width: 1200px;
  width: 100%; */
  max-width: 1025px;
  width: 90%;
  margin: 0 auto;
  padding: 60px 24px 60px 24px;
  margin-top: -1px;
  /* background: #ffffd7; */
  background: #fcf5eb;
}
.contactSection .inner {
  /* max-width: 1200px;
  width: 100%; */
  max-width: 1025px;
  width: 90%;
  margin: 0 auto;
  /* padding: 60px 24px 60px 24px; */
  padding: 60px 47px 60px 5px;
  margin-top: -1px;
  /* background: #ffffd7; */
  background: #fcf5eb;
}

.pagePrivacy-policy {
  width: 100%;
  background: #fcf5eb;
}
.pagePrivacy-policy .inner {
  /* max-width: 1200px;
  width: 100%; */
  max-width: 1025px;
  width: 90%;
  margin: 0 auto;
  padding: 100px 24px 60px 24px;
  margin-top: -1px;
  /* background: #ffffd7; */
  background: #fcf5eb;
}

.slider2 {
  padding-top: 46px;
  padding-bottom: 46px;
  /* background: #fff; */
  background-image: url(../img/mokume.png);

}
/* about slider */
.slider2 div img {
  width: 93%;
  /* height: 200px; */
  height: auto;           /* お好みの高さに */
  object-fit: cover;       /* トリミングしつつフィット */
  object-position: center; /* 中央から表示 */
}
/* voice slider */
.slider3 div {
  width: 93%;
  /* height: auto; */
             /* お好みの高さに */
  object-fit: cover;       /* トリミングしつつフィット */
  object-position: center; /* 中央から表示 */
}
@media screen and (min-width: 1025px) {
  .pagePrivacy-policy .inner {
    padding: 200px 24px 60px 24px;
  }
  
  .slider2 div img {
    width: 95%;
    height: 350px;       /* PCで表示したい理想の縦幅を指定 */
    object-fit: cover;   /* 縦横比を維持したまま、枠いっぱいに広げて切り抜く */
  }  
  .slider2 {
    padding-top: 80px;
    padding-bottom: 80px;
    background-image: url(../img/mokume.png);
  }
  .news {
    font-size: 36px;
  }
  .newsBox {
    font-size: 0.8rem;
    width: 100%;
    padding: 1.3rem 2rem;

    /* padding: 40px; */
  }
  .newsSection .inner {
    max-width: 1100px;
    width: 85%;
    padding: 200px 60px 60px 60px;
    display: flex;
    gap: 70px;
  }  
  .contactSection .inner {
    max-width: 1100px;
    width: 85%;
    padding: 200px 60px 60px 60px;
  }



  .news-item {
    display: flex;
    padding: 12px 0;
  }
  .button003 {
    margin: inherit;
  }
  
  
  /* .fv__bottom__slider {
    border-bottom: 60px solid #6eced5;
  } */
}

/* =====================================================
ページトップ*
===================================================== */

.back-to-top {
  display: flex;
  justify-content: center;
  padding: 12px 20px;
  background-color: #61472c;
  color: #fff;
  text-decoration: none;
  border-radius: 2rem;
  font-size: 16px;
  transition: background 0.3s;
  width: 65%;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .back-to-top {
    display: flex;
    justify-content: center;
    padding: 12px 20px;
    background-color: #62472d;
    color: #fff;
    text-decoration: none;
    border-radius: 2rem;
    font-size: 16px;
    transition: background 0.3s;
    /* width: 100%; */
    width: 50%;
    margin: 0 auto;
  }
  
  .back-to-top:hover {
    background-color: #555;
  }
}
/* =====================================================
ページトップ end*
===================================================== */
/* =====================================================
共通 *
===================================================== */

.service-list {
  /* background: #F9FFF2; */
  /* background: #fcf5eb; */
  /* background: #bafaffa1; */
  padding: 60px 24px ; 
  background: var(--color-main-blue);
  /* background: #2bb9b0;; */
}
.voice,.area{
  /* background: #F9FFF2; */
  /* background: #fcf5eb; */
  /* background: #bafaffa1; */
  padding: 60px 24px ; 
  background-color: var(--color-main-blue);
}


.section-list-title {
  font-size: 16px;
  font-weight: bold;
  /* font-family: "Noto Sans JP", sans-serif; */
  color: #1b2c43;
  color: #62472d;
  text-decoration-line: underline;      /* 下線を引く */
  /* text-decoration-color: #1b2c43; */
  text-decoration-color: #a7917b;;
  text-decoration-style: solid;          /* 線の種類を波線に (solid: 実線, dotted: 点線, dashed: 破線) */
  text-decoration-thickness: 3px;       /* 線の太さを3pxに */
  text-underline-offset: 16px;           /* 文字と下線の間隔を調整 */
  margin-bottom: 36px;
}

.newsSection .inner .section-list-title {
  text-align: center;
  font-family: "Shippori+Mincho", sans-serif;

}

.newsSection .inner .section-list-title-en {
  text-align: center;
}
.section-list-title-en {
  color: #62472d;
  /* font-size: 1.2rem; */
  font-family: "Oswald", sans-serif;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.service-list .section-list-title-en {
  color: #fff;
}
.cta-inner .section-list-title {
  text-align: left;
  margin-bottom: 60px;
}

.cta-inner .section-list-title-en {
  text-align: left;
}


.service-list-lead {
  text-align: left;
  color: #444;
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 3rem;
}
.service-list-grid ,.works-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px; 
  margin-bottom: 60px;
}
.works {
  /* background: #6ECED5; */
  padding: 24px;
  display: flex;
  justify-content: center;
}
.company {
  background: var(--color-main-blue);
  padding: 24px;
  display: flex;
  justify-content: center;
}

.about {
  background-image: url(../img/mokume.png);

}
.about .inner {
  /* background: #FFFEF8; */
  /* background: #fff; */
  /* background: #d0f6f1;; */
  padding: 20px;
  padding-top: 60px;
  padding-bottom: 60px;
}
.works .inner {
  /* background: #FFFEF8; */
  background: #fff;
  padding: 20px;
  padding-top: 60px;
  padding-bottom: 60px;
}
.company .inner {
  background: var(--color-main-blue);
  padding-top: 60px;
  padding-bottom: 60px;
}

.about {
  margin-bottom: 60px;
}

@media screen and (min-width:1025px){

  .company .inner {
    padding: 20px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  .newsSection .inner .section-list-title {
    text-align: left;
    font-family: "Shippori+Mincho", sans-serif;
  
  }
  

  .service-list-grid {
    margin-bottom: 120px;
  }
  
  
  .section-list-title {
    font-size: 24px;
    font-family: "Shippori+Mincho";
    font-weight: bold;
    color: #562f18;
    text-align: left;
  }
  .section-list-title-en {
    font-size: 60px;
    text-align: left;
    /* font-family: "Nothing You Could Do", cursive; */
  }  

  .works-list {
    margin-bottom: 0;
  }
  .voice {
    padding: 0; 
    /* background-image: url(../img/voice3.png); */
    background-repeat: no-repeat;
    /* 縦横比を維持して枠内に収める場合 */
    background-size: contain; 
    /* または具体的なサイズで少し小さくする場合（例: 横幅80%） */
    /* background-size: 80% auto; */
    /* 2. 画像を右寄せ（上下は中央）にする */
    background-position: right bottom; 
    /* background-size: cover; */
    /* position: relative;
    z-index: 1; */
  }
  /* .voice::before {
    content: "";
    background-image: url(../img/voice.png);
    background-size: cover;
    opacity: 0.5;
    
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -1;
  } */
  .voice .inner {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 100px 60px;
    /* padding: 100px 10px; */
  }
  

  .about {
    /* border: 50px solid #6ECED5; */
    /* background: none; */
    background-image: url(../img/mokume.png);

    /* background: #6ECED5;
    max-width: 1100px; */
    width: 100%;
    margin: 0 auto;
    padding: 100px;
  }
  .about .inner {
    /* max-width: 1200px;
    width: 100%;
    margin: 0 auto; */
    display: flex;
    justify-content: flex-end;
    /* flex-direction: column; */
    /* background: #fff9f0; */
    /* background: #FFFEF8; */
    /* background: #d0f6f1; */
    /* padding: 100px; */
    /* border: 50px solid #6ECED5; */
  }
  .reaf {
    position:absolute;
    bottom: 100px;
    left: 50px;
  }
  .reaf img {
    opacity: 0.2;
    width: 35%;
  }
  .service {
    padding: 0;
    /* border: 100px solid #6eced5; */
    background: var(--color-main-blue);
  }
  .works {
    background: #fff;
  }

  .service-list {
    padding: 0;
    background: var(--color-main-blue);

  }
  
  
  .service-list .inner {
    max-width: 1100px;
    width: 100%;
    padding: 100px 60px;
    margin: 0 auto;
  }
  .service .inner {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 100px 60px;
  }

}
/* =====================================================
共通 end*
===================================================== */
/* =====================================================
about end*
===================================================== */

.about h2 {
  font-size: 30px;
  line-height: 46px;
  text-align: center;
  margin-bottom: 38px;
  color: #62472d;
  /* font-weight: 500; */
  font-weight: bold;
}
.about-text {
  color: #555;
  font-size: 20px;
  padding-right: 10px;
  padding-left: 10px;
  line-height: 28px;
  letter-spacing: .1rem;
  font-weight: 500;
  margin-bottom: 38px;
  text-align: center;
  font-weight: bold;
  }
.about-text2 {
  color: #555;
  text-align: left;
  font-size: 14px;
  line-height: 1.6rem;
  font-weight: 400;

  /* background: #e8f0e6; */
  background: #F9FFF2;
  padding: 25px 30px;
  border-radius: 12px;
  margin-bottom: 40px;
  margin-top: 40px;
}



@media screen and (min-width:1025px){
  .about-text {
    font-size: 30px;
    text-align: center;
    line-height: 2.8rem;
    text-align: left;
    font-weight: bold;
    color: #444;
  }
  .company-about-text {
    color: #fff;
  }
  .about-text2 {
    font-size: 16px;
    line-height: 2rem;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
  }
  .about h2 {
    font-size: 40px;
    /* color: #444; */
    color: #62472d;
    font-weight: bold;
  }
  
}
/* =====================================================
about end*
===================================================== */

/* =====================================================
service 
===================================================== */

.service-card {
  width: calc((100% - 20px) / 2);
  /* border: 1px solid #9a6538; */
  /* border: 3px solid #a8917b; */
  /* border: 1px solid; */
  border-radius: 8px;
  background: #fff;
}
.service-card-icon {
  display: flex;
  justify-content: center;
  padding-top: 20px;
  padding-bottom: 6px;
}
.service-card-icon img {
  height: 50px;
  width: auto;
}
.service-card-text {
  font-size: 16px;
  text-align: center;
}
.works-text p {
  font-size: 14px;
  text-align: left;
}
@media screen and (min-width:1025px) {
  .service-card {
    width: 286px;
    border: none;
  }
  
  
  .service-list-lead {
    font-size: 16px;
    text-align: left;
    /* font-weight: bold; */
    font-weight: 500;
    letter-spacing: 0.1rem;
    margin-bottom: 3rem;
    /* color: #62472d; */
    color: #555;
  }  
  .service-card-text {
    font-size: 20px;
    font-weight: 500;
    color: #555;
  }
  .service-card-icon img {
    height: 74px;
  }
  .works-text p {
    font-size: 16px;
    text-align: left;
  }
  
}
/* =====================================================
service end
===================================================== */
/* =====================================================
voice 
===================================================== */

.voice-item {
  /* border: 1px solid #9b6638; */
  border-radius: 20px;
  padding: 20px;
  height: auto;
  width: 230px;
  margin: 0 auto;
  margin-bottom: 60px;
  background: #fff;
  box-shadow: 12px 12px 10px 0px rgba(0, 164, 205, 0.4);
}

.voice-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 1.8rem;
  color: #9f5f20;
  margin-top: 18px;
}
.voice-item p {
  line-height: 1.8rem;
  font-size: 14px;
  text-align: left;
  letter-spacing: 0.05em;
  color: #507d8d;
}
/* .voice-card-name {
  position: relative;
  margin: 15px 0 0;
  padding-top: 10px;
}

.voice-card-name::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #73e2e8;
} */


.voice-card-name {
  position: relative;
  margin-top: auto;
  padding-top: 20px;
}

.voice-card-name::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #73e2e8;
}

@media screen and (min-width:1025px){
  .voice-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: space-between;
  }
  .voice-item {
    height: 480px;
    width: 276px;
    display: flex;
    flex-direction: column;
  }
  
}
/* =====================================================
voice end
===================================================== */

/* =====================================================
work
===================================================== */
.works-item {
  width: 100%;
}
.works-item img {
  /* width: 280px; */
  width: 100%;
  max-width: 500px;
  /* border-radius: 5px; */
  margin-bottom: 16px;
}
.works-text h3 {
  font-size: 20px;
  margin-bottom: 20px;
  text-decoration-line: underline;
  /* text-decoration-color: #1b2c43; */
  text-decoration-color: #aeaeae;
  text-decoration-style: solid;
  text-decoration-thickness: 3px;
  text-underline-offset: 8px;
  color: #444;
}
@media screen and (min-width:1025px) {
  .works-item {
    width: 100%;
    max-width: 460px;
  }
  .works-item img {
    width: 100%;
  }
}
/* =====================================================
work end
===================================================== */
/* =====================================================
company
===================================================== */

.company .about-text {
  font-size: 18px;
}
.about-text2 span {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}
.company .about-text2 {
  margin-bottom: 60px;
}
/* =====================================================
company end
===================================================== */
/* =====================================================
footer
===================================================== */
footer h2 {
  font-family: 'Oswald',sans-serif;
  letter-spacing: 0.15em;
  font-size:1.8rem;
  color:#fff;
}
footer h3 {
  font-family: "Shippori+Mincho";
  color: #444;
  font-size: .7rem;
}
.footer1 {
  background: var(--color-main-blue);
  padding: 60px 24px 30px 24px;
  width: 100%;
  margin-top: -2px;
}
.footer1 .inner {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.footer1 .inner .logo {
  width: 55px;
  margin-right: 18px;
}
.footer1 .inner2 {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 18px;
  margin-bottom: 22px;
}
.footer1 .inner2 div {
  font-size: 14px;
  color: #555;
}
.copyright {
  font-size: 12px;
  margin-top: 3rem;
  text-align: center;
}
@media screen and (min-width:1025px) {
  footer p {
    font-size: 16px;
    color: #444;
  }
  .company-tel , .company-access {
    font-size: 16px;
    margin-bottom: 10px;
  }
  footer .company-area h2 {
    margin-bottom: 26px;
  }
  .footer1 .inner {
    display: inherit;
    text-align: center;
  }
  

}
/* =====================================================
footer end
===================================================== */
/* =====================================================
flow  サービスの流れ 
===================================================== */
.flow {
  /* background: #fff; */
  background-color: #DAEFEE;;
  padding: 60px 24px;
}

.flow-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 60px;
}


.flow-heading p {
  color: #666;
  margin-bottom: 50px;
}

/* アイテム */
.flow-item {
  /* background: #F9FFF2; */
  /* background: #F9FFF2; */
  background: #fff;
  /* border: 1px solid #EAE6DF; */
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.flow-item p {
  margin-bottom: 0;
  text-align: left;
  color: #666;
  letter-spacing: 0.05em;
  /* font-size: 14px; */
}

/* 番号 */
.flow-number {
  font-family: "Shippori+Mincho", sans-serif;
  font-size: 26px;
  font-weight: bold;
  /* margin-top: -5px; */
  color: #2c6b63;
  min-width: 50px;
}
.flow-content {
  display: flex;
  align-items: center;
}

/* テキスト */
.flow-content h3 {
  font-size: 20px;
  font-weight: bold;
  /* margin-bottom: 8px; */
  color: #2c6b63;
}

.flow-content p {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
}

/* 矢印 */
.flow-arrow {
  width: 0;
  height: 0;
  margin: 15px auto;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid var(--color-main-blue);
}
@media screen and (min-width:1025px) {
  .flow {
    padding: 0;
  }
}
/* =====================================================
flow  サービスの流れ  end
===================================================== */
/* =====================================================
会社概要
===================================================== */

/* メッセージ */
.company-message {
  /* background: #e8f0e6; */
  background: #F9FFF2;
  padding: 25px 30px;
  border-radius: 12px;
  margin-bottom: 40px;
}

.company-message01 {
  line-height: 1.8;
  color: #555;
}

.company-name {
  text-align: right;
  margin-top: 15px;
  font-size: 14px;
  color: #555;
}

/* テーブル */
.company-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.company-table th,
.company-table td {
  border: 1px solid #ccc;
  padding: 10px;
}

.company-table th {
  width: 30%;
  background: #eee;
  text-align: left;
}

.company-table td {
  background: #fff;
}
@media screen and (min-width:1025px) {
  .company-table {
    font-size: 16px;
  }
  .company-message {
    padding: 30px;
  }
  .company-message div {
    width: 70%;
    margin: 0 auto;
  }

  .company-message01 {
    text-align: left;
    line-height: 1.8rem;
    letter-spacing: 0.05em;
  }  
  .company-name {
    text-align: right;
    margin-bottom: 0;
  }  
}
/* =====================================================
会社概要  end
===================================================== */
/* =====================================================
member
===================================================== */
/* メンバー紹介 */
.member {
  padding: 60px 24px 0 24px;
  background: #fff;
}

.member__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.member__inner .section-list-title {
  margin-bottom: 60px;
}

.member__item {
  align-items: center;
  margin-bottom: 60px;
  gap: 40px;
  background: #f2ffe4;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  padding: 40px 24px;
}

.member__image {
  width: 200px;
  height: 200px;
  flex-shrink: 0;
}

.member__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.member__content {
  background: none;
  padding: 0px;
  border-radius: 16px;
  flex: 1;
}
.member__content p,.member__content h3 {
  color: #666;
}

.member__name {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 16px;
  text-align: center;
}
.member__title {
  text-align: center;
  font-weight: bold;
  margin-top: 12px;
}

.member__text {
  font-size: 14px;
  line-height: 1.8;
  margin-top: 4px;
  text-align: left;
}
@media screen and (min-width: 1025px) {
  .member {
    padding: 0;
    background: #DAEFEE;
  }
  .member__item__box {
    margin-bottom: 30px;
    /* background: #f2ffe4; */
    background: #fff;
  }
  .member__item {
    flex-direction: row;
    width: 70%;
    margin: 0 auto;
    background: none;
  }
  .member__inner {
    padding: 100px 60px;
    max-width: 1100px;
    width: 100%;
  }
  .member__item--reverse {
    flex-direction: row-reverse;
  }
  .member__text {
    text-align: center;
  }
  
}
/* =====================================================
member end
===================================================== */
/* =====================================================
faq
===================================================== */
/* よくある質問 */
.faq {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 24px 60px 24px;
}
.faq-title {
  font-size: 28px;
  margin-bottom: 10px;
  border-bottom: 4px solid #2e7d6b;
  display: inline-block;
}


.faq-item {
  border-top: 1px solid;
  /* background: #F9FFF2;
  border-radius: 8px; */
  margin-bottom: 16px;
  padding: 0;
  overflow: hidden;
}
.faq-item:last-child {
  border-bottom: 1px solid;
  padding-bottom: 16px;
}

/* summary（質問部分） */
.faq-item summary {
  list-style: none;
  cursor: pointer;
  /* padding: 18px 30px 18px 20px; */
  padding: 32px 30px 10px 0px;
  font-weight: bold;
  position: relative;
  display: flex;
  /* align-items: center; */
}

/* デフォルトの矢印を消す */
.faq-item summary::-webkit-details-marker {
  display: none;
}

/* Qアイコン */
.faq-item .q {
  color: #2e7d6b;
  font-weight: bold;
  margin-right: 10px;
  font-family: sans-serif;
  font-size: 22px;
  margin-top: -6px;
}

/* プラスアイコン */
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  /* bottom: 16px; */
  top: 30px;
  font-size: 22px;
  color: #2e7d6b;
  transition: transform 0.3s;
}

/* 開いたときマイナス */
.faq-item[open] summary::after {
  content: "−";
}

/* 回答部分 */
.faq-item p {
  font-weight: 500;
  /* padding: 0 20px 18px; */
  padding: 0 20px 0;
  color: #555;
  line-height: 1.8;
  text-align: left;
}
.question-text {
  flex: 1;
  color: #555;
}
@media screen and (min-width: 1025px) {

  /* summary（質問部分） */
  .faq-item summary {
    padding: 32px 30px 10px 20px;
  }

  .faq {
    /* padding: 40px 20px; */
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 100px 60px;
  }  
  .faq-item .q {
    color: #2e7d6b;
    font-weight: bold;
    margin-right: 10px;
    font-family: sans-serif;
    font-size: 30px;
    margin-top: -11px;
  }
  
}
/* =====================================================
faq end
===================================================== */
/* =====================================================
contact
===================================================== */
/* .cta {
  background: var(--color-main-blue);
  padding: 60px 24px 30px 24px;
  text-align: center;
} */

.cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 60px;
}

.cta-title {
  color: #fff;
  font-size: 22px;
  margin-bottom: 50px;
  letter-spacing: 2px;
  line-height: 40px;
}

/* 横並び */
.cta-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* 画像 */
.cta-image img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
}

/* 右側 */
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
}

/* CONTACTFORMボタン */
.cta-contactform {
  background: var(--color-accent-gray);
  border: 2px solid #fff;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  display: flex;
  min-width: 314px;
  flex-direction: column;
  padding: 8px 40px;
  height: 80px;
}
.cta-contactform .contactform-contact {
  font-size: 20px;
  font-weight: bold;
  display: block;
  color: #fff;
}


.cta-contactform .contactform-time {
  margin-top: 5px;
  display: block;
  font-size: 16px;
  color: #fff;
}



/* LINEボタン */
.cta-line {
  background: #39d10a;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  display: flex;
  min-width: 314px;
  flex-direction: column;
  padding: 8px 40px;
  height: 80px;
}
.cta-line .line-contact {
  font-size: 20px;
  font-weight: bold;
  display: block;
  color: #fff;
}


.cta-line .line-time {
  margin-top: 5px;
  display: block;
  font-size: 16px;
  color: #fff;
}

/* 電話 */
.cta-tel {
  background: #fff;
  border-radius: 50px;
  padding: 8px 30px;
  text-decoration: none;
  color: #333;
  display: flex;
  min-width: 314px;
  flex-direction: column;
  border: 2px solid #248380;
  height: 80px;

}

.tel-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.tel-icon {
  font-size: 26px;
}

.tel-number {
  font-size: 22px;
  font-weight: bold;
  color: #5aaeb3;
  letter-spacing: 2px;
}

.tel-time {
  font-size: 13px;
}
.cta-tel:hover {
  color: #333;
}
.privacypolicy {
  font-size: 12px;
  margin-bottom: 3px;
}
@media screen and (min-width: 1025px) {
  .cta {
    padding: 100px 24px 100px 24px;
  }
  .cta-actions {
    display: flex;
    flex-direction: row-reverse;
    gap: 60px;
    align-items: center;
    text-align: center;
  }
  .cta-line .line-time {
    margin-top: 0;
  }
  .cta-line {
    padding: 8px 30px;
    height: 80px;
    /* border: none; */
}
  .cta-tel {
    /* border: 2px solid #248380; */
    padding: 8px 30px;
    height: 80px;
  }
  .tel-time {
    margin-top: 0px;
  }
  .pc-header-right .cta-actions .cta-line ,  .pc-header-right .cta-actions .cta-tel {
    padding: 4px 30px;
    height: auto;
  }
  .pc-header-right .cta-actions {
    gap: 20px;
  }


}

/* =====================================================
contact end
===================================================== */

/*---------------------------------------------------------------------------------------------
page
----------------------------------------------------------------------------------------------*/
.single {
  margin-top: 130px;
}

.post {
  margin-top: 30px;
}
.post h2 {
  display: flex;
}

.date {
  padding: 12px;
  border-radius: 26px;
  color: #ffffff;
  background: #2ca89c;
  font-size: 1rem !important;
  display: inline-block;
  font-family: "M PLUS Rounded 1c";
  width: 18%;
}

.blogTitle {
  color: #686868;
  /* border-bottom: 4px dotted #d7ad3b; */
  font-size: 1.5rem !important;
  /* font-family: "M PLUS Rounded 1c"; */
}

.blogTime {
  background: var(--color-accent-green);
  color: #fff;
  border-radius: 20px;
  padding: 2px 10px;
  display: inline-block;
}

.module-Article_Item_Body h2 {
  font-size: 1.2rem !important;
  margin-top: -5px;
}

.pageblogList article {
  border: 13px solid #fbeba9;
  background: #fff;
  padding: 45px;
  border-radius: 63px;
}

.module-Article_Item_Date {
  background-color: var(--color-accent-green);
  color: #fff;
  padding: 5px 10px;
  display: inline-block;
  border-radius: 20px;
  margin-top: 10px;
}
.back-button {
  border: 2px solid #62472d;
  color: #ffffff;
  /* color: #61472c; */
  background: #61472c;
  font-weight: bold;
  letter-spacing: .1rem;
  font-size: .9rem;
  border-radius: 1rem;
  padding: 0.6rem;
  /* box-shadow: 6px 6px 6px 0px rgba(0, 0, 0, 0.45); */
}



/* .container {
  display: flex;
  gap: 10px; 
  justify-content: center;
} */
.box {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.greenS {
  background-color: #05A369;
}
.pink {
  background-color: pink;
}
.singlenewsdaytitle {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.icatch {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .single {
    margin-top: 40px;
  }
  .post h2 {
    display: initial;
  }
  .post h2 .date {
    width: auto;
    margin-bottom: 10px;
  }
  .back-button {
    /* border: 2px solid #05A369; */
    border: 2px solid #fff;
    /* color: #05a369; */
    color: #fff;
    font-weight: bold;
    letter-spacing: .1rem;
    font-size: .9rem;
    border-radius: 1rem;
    padding: 0.6rem;
    /* box-shadow: 6px 6px 6px 0px rgba(0, 0, 0, 0.45); */
  }
  /* .container {
    display: flex;
    gap: 10px;
    justify-content: center;
  } */
  .box {
    width: 10px;
    height: 10px;
    border-radius: 50%;
  }
  .greenS {
    background-color: #05A369;
  }
  .pink {
    background-color: pink;
  }

}
/* ===============================================
固定ページ
=============================================== */
.pageWork {
  margin-top: 120px;
}

  /* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
  ハンバーガー
  ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
  /*----------------------------
  * メニュー開閉ボタン
  *----------------------------*/
  .menu-btn {
    position: fixed;
    /* right: 20px; */
    /* right: 40px; */
    /* right: 1rem; */
    right: .3rem;
    z-index: 7;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #333;
    color: #fff;
    margin-top: 3px;
  }
  /*----------------------------
  * メニュー本体
  *----------------------------*/
  .menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 6;
    width: 100vw;
    height: 88vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* background-image: url(../img/bg-00.png); */
  }
  .headerList {
    margin: 0 auto;
    padding-left: 21px;
    margin-bottom: 19px;
    margin-left: 0;
    margin-top: 30px;
    }
  .headerList li {
    /* width: 50%; */
    align-items: center;
    justify-content: center;
    /* margin-bottom: 3rem; */
    /* gap: 1rem; */
  }
  .headerList li:hover {
    color: #ED7D4D;
  }
  @media screen and (max-width: 1025px) {
    .hunbergericons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      }
      .fa-twitter:before {
        content: '𝕏';
        font-family: unset;
        font-weight: bold;
      }
  }
  
  .menu__item {
    height: auto;
    padding: 0.5em 1em;
    /* text-align: center; */
    color: #fff;
    box-sizing: border-box;
    line-height: 2.4;
    /* border-bottom: 5px dotted #d7ad3b; */
  }
  .hanbergerTel {
    font-size: 2rem;
  }
  /* .topBg {
    top: 30rem;
  } */
  /*----------------------------
  * アニメーション部分
  *----------------------------*/
  /* アニメーション前のメニューの状態 */
  .menu {
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s linear;
  }
  /* アニメーション後のメニューの状態 */
  .menu.is-active {
    pointer-events: auto;
    opacity: 1;
    padding-left: 0;
    width: 100%;
    /* margin-top: -50px; */
    /* margin-top: 0px; */
    /* background: #fff; */
    background: var(--color-main-blue);
    height: 100vh;
    overflow: auto;
    
  }
  .menu-btn {
    /* position: relative; */
    /*ボタン内側の基点となるためrelativeを指定*/
    /* background: #9a6538; */
    background: var(--color-accent-gray);
    /* background: #1c2c43; */
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    /* border-radius: 1rem; */
    /* border-radius: .6rem; */
    line-height: 65px;
    z-index: 100;
  }
  /*ボタン内側*/
  .menu-btn span {
    display: inline-block;
    transition: all 0.4s; /*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 5px;
    background: #fff;
    width: 45%;
  }
  .menu-btn span:nth-of-type(1) {
    top: 13px;
  }
  .menu-btn span:nth-of-type(2) {
    top: 19px;
  }
  .menu-btn span:nth-of-type(3) {
    top: 25px;
  }
  .menu-btn span:nth-of-type(3)::after {
    content: "Menu"; /*3つ目の要素のafterにMenu表示を指定*/
    position: absolute;
    /* top:5px; */
    top: -20px;
    left: -2px;
    color: #fff;
    font-size: 0.6rem;
    text-transform: uppercase;
  }
  /*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/
  .menu-btn.active span:nth-of-type(1) {
    top: 14px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  .menu-btn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .menu-btn.active span:nth-of-type(3) {
    top: 26px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
  .menu-btn.active span:nth-of-type(3)::after {
    content: "Close"; /*3つ目の要素のafterにClose表示を指定*/
    transform: translateY(0) rotate(-45deg);
    /* top:5px; */
    top: -22px;
    left: 3px;
  }

  /* ハンバーガーメニュー end*/
  .blogTitle {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1.1rem;
  }
  
.module-Article_Item_Body p {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0;
}



.arrow_03::before {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #a6ceab;
}

/* テキストリンク */
.arrow_btn.arrow_03::after {
  left: 10px;
  width: 8px;
  height: 8px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
}


@media screen and (max-width: 768px) {
  .arrow_03::before {
    width: 22px;
    height: 22px;
  }
  .arrow_btn.arrow_03::after {
    left: 6px;
  }
}
/* // 最新記事の文字制限 */
.ellipsis {
  width: 600px; /* 省略せずに表示するサイズを指定 */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (max-width: 768px) {
  .ellipsis {
    width: 180px; /* 省略せずに表示するサイズを指定 */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
/* // ブログの文字制限 */
.ellipsis2 {
  width: 339px; /* 省略せずに表示するサイズを指定 */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (max-width: 768px) {
  .ellipsis2 {
    width: 180px; /* 省略せずに表示するサイズを指定 */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.ellipsis3 {
  width: 339px; /* 省略せずに表示するサイズを指定 */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (max-width: 768px) {
  .ellipsis3 {
    width: 180px; /* 省略せずに表示するサイズを指定 */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.swing {
  animation-name: katakata;
  animation-duration: 6000ms;
  animation-iteration-count: infinite;
  animation-timing-function: step-start;
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
          clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

@keyframes katakata {
  0% {
    transform: translateY(-2px) rotate(6deg);
  }
  10% {
    transform: translate(0) rotate(0deg);
  }
  20% {
    transform: translate(0) rotate(-6deg);
  }
  30% {
    transform: translateY(-2px) rotate(0deg);
  }
  40% {
    transform: translateY(-2px) rotate(6deg);
  }
  50% {
    transform: translate(2px) rotate(-2deg);
  }
  60% {
    transform: translateY(2px) rotate(0deg);
  }
  70% {
    transform: translate(0) rotate(6deg);
  }
  80% {
    transform: translate(2px) rotate(-2deg);
  }
  90% {
    transform: translate(0) rotate(0deg);
  }
  100% {
    transform: translateY(-2px) rotate(6deg);
  }
}

@keyframes showTextFromBottom {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0px);
  }
}
.textanimation span {
  animation: showText 3s backwards;
  display: inline-block;
}

.textanimation > span {
  overflow: hidden;
}

.textanimation > span > span {
  animation: showTextFromBottom 0.5s backwards;
}

@media screen and (max-width: 768px) {
  .swing {
    -webkit-clip-path: polygon(50% 0%, 0% 70%, 108% 95%);
            clip-path: polygon(50% 0%, 0% 70%, 108% 95%);
  }
}
.topImgPageNews {
  padding-right: 10rem;
}
.otherService {
  margin-bottom: 8rem;
}

/***追従するトップへ戻るボタン***/
.container {
  /* height: 1500px; */
  /* padding: 50px 0; */
  /* background: #c0c0de; */
}


button {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  /* right: 20px; */
  right: 0;
  bottom: 20px;
  cursor: pointer;
  /* opacity: 0; */
  /* visibility: hidden; */
  border: 0;
  background: none;
  transition: .2s;
  letter-spacing: 3px;
  /* color: #9c6738; */
  color: #7b6d61;
  font-weight: bold;
}

button span:before {
    position: absolute;
    top: -29px;
    left: 19px;
    transform: rotate(-45deg);
    display: block;
    width: 12px;
    height: 12px;
    content: "";
    border: 1px solid #fff;
    border-width: 3px 3px 0px 0px;
    z-index: 2;
}

button span:after {
    position: absolute;
    width: 40px;
    height: 40px;
    /* border: 1px solid #000; */
    /* background: #9b6638; */
    /* background: #7b6d61; */
    background: var(--color-accent-gray);
    content: "";
    border-radius: 100%;
    top: -43px;
    left: 5px;
}

.is-active {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 1025px) {
  button {
    right: 30px;
    bottom: 26px;
    font-size: 16px;
  }
  
  button span:before {
      top: -34px;
      left: 16px;
      width: 22px;
      height: 22px;
      border-width: 2px 2px 0px 0px;
      z-index: 2;
    }
  
  button span:after {
      width: 60px;
      height: 60px;
      top: -60px;
      left: -3px;
      z-index: -1;
  }
  

}
/*---------------------------------------------------------------------------------------------
スライダー
----------------------------------------------------------------------------------------------*/

.module-Article_Item_Meta {
  padding-left: 0;
}

@media screen and (max-width: 768px) {
  .module-Article_Item_Title {
    font-size: 1.2rem;
  }
  .module-Article_Item_Img {
    text-align: center;
    width: 100% !important;
  }
}
@media screen and (min-width: 1025px) {
  .slider {
    margin: 0 auto;
    max-width: 1920px;
    width: 100%;
  }
}
.single-contents {
  width: 50%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .single-contents {
    width: 90%;
    margin: 0 auto;
  }  
}

/*---------------------------------------------------------------------------------------------
page-news single-news
----------------------------------------------------------------------------------------------*/
.pagenewsbutton003 a {
  padding: 22px 22px;
}
.pageNewstext {
  font-size: 1rem;
}

.pagenewsTopic {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid gray;
  padding-top: 1.3rem;
  padding-bottom: 1.3rem;
  width: 80%;
  margin: 0 auto;
}
.pagenewsBox {
  height: auto;
}
.newsDateshishi {
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 1rem;
}
.newsTitleshishi {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  position: relative;
  display: inline-block;
  /* padding-bottom: 48px; */
}
.topNewsPc {
  margin-bottom: 0rem;
}

@media screen and (max-width: 768px) {
  .pagenewsbutton003 a {
    padding: 22px 22px;
  }
  .pageNewstext {
    font-size: 1rem;
  }
  .pagenewsTopic {
    display: flex;
    align-items: center;
    justify-content:space-between;
    border-bottom: 1px solid gray;
    padding-top: 1.3rem;
    padding-bottom: 1.3rem;
    width: 100%;
    margin: 0 auto;
  }
  .pagenewsBox {
    height: auto;
  }
  .newsDateshishi {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 1rem;
  }
  .newsTitleshishi {
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
    position: relative;
    display: inline-block;
    /* padding-bottom: 48px; */
  }

}
.singlenews {
  margin-top: 170px;
}
 /* .pagenews {
  margin-top: 70px;
} */

/* 
button {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 80px;
  right: 20px;
  bottom: -160px;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  border: 0;
  background: #ffbd27;
  transition: .2s;
  letter-spacing: 3px;
  font-weight: bold;
  border-radius: 100px 100px 0 0;
}

button i{
  position: absolute;
  font-size: 30px;
  color: #FFF;
  top: 15px;
  font-weight: 300;
}

button p{
  margin: 0;
  font-size: 15px;
  bottom: 13px;
  position: absolute;
}

.is-active {
  opacity: 1;
  visibility: visible;
}

button.is-active {
  bottom: 0px;
}






@media screen and (max-width: 768px) {
  button {
    right: 0px;
  }
} */
/***トップへ戻るボタンここまで***/
/*---------------------------------------------------------------------------------------------
front-page blog
----------------------------------------------------------------------------------------------*/
/* .module-Article_Item_Img {
  margin-bottom: 20px;
}
.container01 {
  width: 80%;
  margin: 0 auto;
} */
/* arrow03 */
/* .arrow_03 {
  right: 32px;
  top: 28%;
}
.arrow_03 {
  right: -5px;
  top: 36%;
} */
/* 続きを読む */
.readmore__text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* 最初は3行表示 */
  overflow: hidden;
  transition: all .3s;
}

.readmore__text.open {
  display: block;
}

.readmore__btn {
  margin-top: 16px;
  padding: 8px 20px;
  /* border: 1px solid #333; */
  cursor: pointer;
  transition: .3s;
  text-align: center;
  background: #62472d;
  /* color: #05a369; */
  color: #fff;
  border-radius: 3rem;

}

.readmore__btn:hover {
  background: #62472d;
  /* color: #05a369; */
  color: #fff;
  border-radius: 3rem;
}


/* cta */
.cta-container {
  display: flex; /* 左右に並べる */
  width: 100%;
  height: 400px;
  overflow: hidden; /* はみ出し防止 */
  max-width: 1920px;
}

/* 左側のコンテンツ */
.left-content {
  flex: 1; /* 左側を1の比率で広げる */
  background-color: white; /* 左側の背景色 */
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: flex-start;
  padding: 0 10%;
  z-index: 1; /* 画像より前面に */
}

.left-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}

.left-content p {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.6;
}

/* 右側の画像エリア */
.right-image-area {
  flex: 1.2; /* 右側を1.2の比率で広げる（画像重視） */
  position: relative;
  overflow: hidden;
}

/* 画像自体の設定とマスク処理 */
.blurred-image {
  width: 100%;
  /* height: 100%; */
  height: 400px;
  object-fit: cover; /* 画像をエリアに合わせてトリミング */
  position: absolute;
  top: 0;
  right: 0;
  
  /* ★ここがポイント：CSS Mask でぼかす */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%);
  mask-image: linear-gradient(to right, transparent 0%, black 30%);
}

/* cta end */
/* フッターのメインスタイル */
.site-footer {
  background-color: #202b38; /* 画像のような深い紺・グレー系の背景色 */
  color: #e2e8f0;            /* 薄いグレーの文字色 */
  padding: 60px 20px;
  width: 100%;
}

/* 横並びのコンテナ設定 */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* 各カラムの基本設定 */
.footer-column {
  flex: 1;
  padding: 0 40px;
}

/* 左カラム：ブランド情報 */
.footer-brand {
  /* padding-left: 0; */
  padding-left: 120px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.brand-icon {
  font-size: 24px;
  color: #94a3b8; /* アイコンの少し落ち着いた色 */
  margin-right: 12px;
}

.brand-name {
  font-size: 20px;
  font-weight: 500;
  /* letter-spacing: 0.5px; */
  letter-spacing: 2.5px;
  font-family: 'Oswald', sans-serif;
}

.footer-info p {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.8;
}

/* 中央・右カラムの共通縦線とメニュー設定 */
.footer-menu {
  border-left: 1px solid rgba(255, 255, 255, 0.15); /* 画像にある細い区切り線 */
  padding-left: 40px;
  height: 100%;
}

.menu-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.footer-menu ul {
  list-style: none;
}

.footer-menu ul li {
  margin-bottom: 12px;
}

.footer-menu ul li a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s ease;
}

/* マウスホバー時に少し明るくする */
.footer-menu ul li a:hover {
  color: #ffffff;
}

/* 右カラム：メニューとSNSの複合 */
.footer-menu-sns {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 40px;
}

/* 右カラム内のメニューは枠線を消す */
.footer-menu-sns .footer-menu {
  border-left: none;
  padding-left: 0;
}

/* SNSアイコンエリア */
.footer-sns {
  display: flex;
  gap: 15px;
  /* margin-top: 25px; */
}

.footer-sns a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  color: #202b38;
  background-color: #94a3b8; /* 画像のような背景と同色の切り抜き円 */
  border-radius: 50%;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.footer-sns a:hover {
  background-color: #ffffff;
  color: #111827;
}

/* レスポンシブ対応（スマホ表示の時は縦並びにする） */
@media (max-width: 768px) {
  .footer-container {
      flex-direction: column;
      gap: 40px;
  }
  
  .footer-column {
      width: 100%;
      padding: 0;
  }
  
  .footer-menu, .footer-menu-sns {
      border-left: none;
      padding-left: 0;
  }
}
/* voice slider */
.slider5 {
  /* margin: 30px auto 0; */
  margin: 0 auto;
  max-width: 500px;
  width: 80%;
}
.slick-dotted.slick-slider {
  margin-bottom: 0;
}
.slick-img img {
  height: auto;
  width: 100%;
}
.slick-next:before, .slick-prev:before {
  font-family: slick;
  font-size: 36px;
  line-height: 1;
  opacity: 1;
  color: var(--color-main-blue);
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-prev {
  left: -40px;
}
@media screen and (min-width:1025px){
  .slider5 {
    /* max-width: 850px; */
    max-width: 1000px;
    width: 100%;
  }  
  .slick-next:before, .slick-prev:before {
    font-size: 50px;
    /* color: #a8917b; */
    color: #fff;
  }
  .slick-prev {
    /* left: 688px; */
    left: 810px;
    top: -72px;
  }
  .slick-next {
    right: 60px;
    top: -72px;
  }
}

/* voice slider end*/

.readmore__more {
  display: none;
}

.readmore__more.is-open {
  display: block;
}

.readmore__btn {
  cursor: pointer;
}
/* トップへ */
.page-top {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}

.page-top.is-active {
  opacity: 1;
  visibility: visible;
}
.slick-dots li button:before {
  display: none;
}


/* =================================
   Contact Form
================================= */

.contact-form {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-form-row {
  display: grid;
  /* grid-template-columns: 236px 1fr; */
  grid-template-columns: 220px 1fr;
  align-items: center;
  margin-bottom: 22px;
}

.contact-form-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
}

.contact-form-label .required,
.contact-form-label .optional {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 20px;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
}

.contact-form-label .required {
  background: #e60012;
  color: #fff;
}

.contact-form-label .optional {
  background: #ddd;
  color: #555;
}

/* 入力欄 */

.contact-form-input input[type="text"],
.contact-form-input input[type="email"],
.contact-form-input input[type="tel"],
.contact-form-input textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 13px 15px;
  border: 1px solid #ddd;
  border-radius: 2px;
  background: #fff;
  font-family: inherit;
  font-size: 15px;
  color: #333;
}

.contact-form-input input[type="text"],
.contact-form-input input[type="email"],
.contact-form-input input[type="tel"] {
  height: 48px;
}

.contact-form-input textarea {
  height: 145px;
  resize: vertical;
}

.contact-form-input input::placeholder,
.contact-form-input textarea::placeholder {
  color: #cfcfcf;
}

/* フォーカス時 */

.contact-form-input input:focus,
.contact-form-input textarea:focus {
  outline: none;
  border-color: #aaa;
}

/* ラジオボタン */

.contact-form-input .wpcf7-list-item {
  margin: 0 25px 0 0;
}

.contact-form-input .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
}

.contact-form-input input[type="radio"] {
  appearance: none;
  width: 18px;
  height: 18px;
  margin: 0;
  border: 1px solid #ccc;
  border-radius: 50%;
  background: #fff;
  position: relative;
}

.contact-form-input input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #333;
}

/* チェックボックス */

.contact-form-input .wpcf7-list-item {
  margin-left: 0;
}

.contact-form-input input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 18px;
  margin: 0 7px 0 0;
  border: 1px solid #ccc;
  background: #fff;
  vertical-align: middle;
  position: relative;
}

.contact-form-input input[type="checkbox"]:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 13px;
}

/* エラーメッセージ */

.contact-form .wpcf7-not-valid-tip {
  margin-top: 5px;
  font-size: 13px;
}

.contact-form .wpcf7-response-output {
  margin: 30px 0 0;
}


/* =================================
   SP
================================= */

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

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

  .contact-form-label {
    font-size: 15px;
  }

  .contact-form-input input[type="text"],
  .contact-form-input input[type="email"],
  .contact-form-input input[type="tel"] {
    height: 46px;
  }

  .contact-form-input textarea {
    height: 180px;
  }

}
.contact-submit {
  text-align: center;
}

.contact-submit input[type="submit"] {
  width: 280px;
  padding: 16px 20px;
  border: none;
  border-radius: 3px;
  background: #7b6e62;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.contact-form-label p{
  display: flex;
}
.contact-privacy {
  border-top: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  padding: 30px 0;
  margin-bottom: 30px;
  /* background: #ffffff; */
}
.contact-privacy h3 {
  font-size: 16px;
}
.contact-privacy p {
  font-size: 14px;
  letter-spacing: 0.2em;
}
.contact-privacy a {
  text-decoration: underline;
}
.contact-form-consent {
  text-align: center;
}
.wpcf7-list-item {
  margin-bottom: .5rem;
}

.wpcf7-list-item label {
  display: flex;
}
.wpcf7-list-item span {
  font-weight: bold;
  margin-left: 10px;
}
.wpcf7-list-item input {
  width: 30px;
  height: 30px;
}

.wpcf7 form .wpcf7-response-output {
  text-align: center;
}

.contact-submit span {
  display: none;
}
.contactSection-lead {
  font-size: 20px;
  letter-spacing: 0.2em;
  line-height: 2rem;
  color: #62472e;
  background: #e9ffed;
  padding: 16px;
  margin-top: 52px;
}
.contactSection-text {
font-size: 16px;
letter-spacing: 0.2em;
line-height: 1.6rem;
}


/* contact-section */
/* =========================
   CONTACT
========================= */

.contact {
  /* background: var(--color-main-blue); */
  padding: 60px 24px 30px 24px;
  text-align: center;
  background-image: url(../img/contactbg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.contact-inner {
  /* max-width: 1100px; */
  max-width: 1300px;
  padding: 100px 60px;
  margin: 0 auto;
}


/* 見出し */

.contact-heading {
  margin-bottom: 50px;
  text-align: center;
}

.contact .section-title-en {
  margin: 0 0 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.contact .section-title {
  margin: 0;
  color: #fff;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 0.08em;
}


/* カード */

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.contact-card {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;

  min-height: 320px;
  padding: 45px 30px 55px;

  box-sizing: border-box;

  background: #fff;
  border-radius: 8px;

  color: #5b514b;
  text-decoration: none;

  text-align: center;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}




/* アイコン */

.contact-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100px;
  height: 100px;
  margin-bottom: 20px;

  background: #73e2e8;
  border-radius: 50%;

  color: #fff;
}

.contact-card-icon .material-symbols-outlined {
  font-size: 28px;
}
.contact-card-icon img {
  width: 100%;
}

/* 英字 */

.contact-card-en {
  margin: 0 0 8px;

  color: #73e2e8;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
}


/* タイトル */

.contact-card-title {
  margin: 0 0 18px;

  color: #5b514b;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
}


/* 電話番号 */

.contact-card-number {
  margin: 0px;
  color: #198E96;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* テキスト */

.contact-card-form,.contact-card-line {
  margin: 0px;
  color: #198E96;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
/* btn */

.contact-card-btn {
  border-radius: 50px;
  padding: 10px;
  width: 95%;
}

.contact-card-tel-btn {
  border: 2px solid #43B4BA;
}


.contact-card-line-btn {
  background-color: #2DBB2C;
  padding: 14px;
}
.contact-card-line-btn p {
  color: #fff;
}

.contact-card-form-btn {
  background-color: #1D949C;
  padding: 14px;
}
.contact-card-form-btn p {
  color: #fff;
}


/* 説明 */

.contact-card-text {
  margin: 0 0 30px 0;

  color: #777;
  font-size: 13px;
  line-height: 1.8;
}


/* 矢印 */

.contact-card-arrow {
  position: absolute;
  right: 25px;
  bottom: 20px;

  color: #73e2e8;
  font-size: 22px;

  transition: transform 0.3s ease;
}

.contact-card:hover .contact-card-arrow {
  transform: translateX(5px);
}

/* =========================
   MESSAGE
========================= */

.message {
  padding: 120px 20px;
  background: #fff;
}

.message-inner {
  margin: 0 auto;
  /* padding: 24px; */
}


/* =========================
   見出し
========================= */

.message-heading {
  margin-bottom: 70px;
  text-align: center;
}

.message .section-title-en {
  margin: 0 0 10px;
  color: #73e2e8;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.message .section-title {
  margin: 0;
  color: #5b514b;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 0.08em;
}




/* =========================
   写真
========================= */

.message-image {
  position: relative;
}

.message-image::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;

  width: 70px;
  height: 70px;

  background: #73e2e8;

  z-index: 0;
}

.message-image img {
  position: relative;
  z-index: 1;

  display: block;
  width: 100%;
  height: auto;

  border-radius: 8px;
}


/* =========================
   メッセージ
========================= */

.message-body {
  position: relative;
  padding: 10px 0;
}


/* リード */

.message-lead {
  position: relative;

  margin: 0 0 30px;
  padding-top: 20px;

  color: #5b514b;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.7;
}


/* リード上のライン */

.message-lead::before {
  content: "";
  position: absolute;
  /* top: 0; */
  bottom: 0;

  left: 0;
  /* width: 45px; */
  width: 100%;
  height: 3px;

  background: #73e2e8;
}


/* 本文 */

.message-text {
  color: #6b625d;
  font-size: 15px;
  line-height: 2.1;
}

.message-text p {
  margin: 0 0 20px;
}


/* 代表名 */

.message-name {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 12px;

  margin-top: 35px;

  color: #5b514b;
}

.message-name span {
  font-size: 13px;
}

.message-name strong {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.message-content {
  display: flex;
  flex-direction: column;
  margin-top: 70px;
}

@media screen and (min-width:1025px){
/* =========================
   写真＋文章
========================= */

.message-content {
  display: grid;
  grid-template-columns: 46% 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 0px;

}
.message-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 60px;
}
}