@charset "utf-8";

/* -------------------------
Base
------------------------- */
*{
  box-sizing:border-box;
}
html,
body{
  overflow-x:hidden;
}
body{
  font-family: "BIZ UDGothic", sans-serif;
  color:#3d4b45;
  background:#faf9f5;
  line-height:1.9;
  font-size:16px;
  letter-spacing:0.03em;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

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

a:hover{
  opacity:.8;
}


/* -------------------------
layout
------------------------- */
.container,
.container2{
  width:min(92%,1200px);
  margin:0 auto;
  padding:0;
  box-sizing:border-box;
}

section{
  padding:100px 0;
}

.flex{
  display:flex;
  gap:48px;
  align-items:flex-start;
}

.box{
  flex:1;
  min-width:0;
}


/* -------------------------
heading
------------------------- */

h1{
  font-size:clamp(2rem, 4vw, 2.5rem);
  font-weight:700;
  line-height:1.4;
  margin-bottom:40px;
  text-align:center;
  color:#2c4337;
}

h2{
  font-size:clamp(1.4rem, 3vw, 2rem);
  margin-bottom:50px;
  text-align:center;
  color:#2c4337;
  position:relative;
}

h2::after{
  content:"";
  width:60px;
  height:2px;
  background:#93b39d;
  position:absolute;
  bottom:-18px;
  left:50%;
  transform:translateX(-50%);
}

h3{
  font-size:1.4rem;
  line-height:1.6;
  margin-bottom:20px;
  color:#32483d;
}

h4{
  font-size:1rem;
  color:#7b847f;
  margin-bottom:30px;
}


/* -------------------------
text
------------------------- */

p{
  margin-bottom:1.2em;
  line-height:2;
}

strong{
  color:#476652;
}


/* -------------------------
hero
------------------------- */

#top_contents{
  padding-top:60px;
}

#top_contents .box:first-child{
  background:#fff;
  padding:50px;
  border-radius:20px;
  box-shadow:0 8px 30px rgba(0,0,0,.04);
}

#top_contents img{
  object-fit:cover;
  height:100%;
}
/* -------------------------
タオライフをやってみよう
------------------------- */

#hero .flex_a{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:32px;
}

#hero .flex-basis-3,
#hero .flex-basis-4,
#hero .flex-basis-5{
  background:#fff;
  padding:36px 30px;
  border-radius:20px;
  box-shadow:0 8px 24px rgba(0,0,0,.05);
  transition:.3s;
}

#hero .flex-basis-3:hover,
#hero .flex-basis-4:hover,
#hero .flex-basis-5:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}

#hero h3{
  font-size:1.35rem;
  margin-bottom:18px;
  color:#2c4337;
}

#hero p{
  margin-bottom:24px;
  line-height:1.9;
}

#hero .button{
  margin-top:auto;
}
.hero_button {
    text-align: right;
}

/* SP */

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

#hero .flex_a{
  grid-template-columns:1fr;
}

.hero_button {
    text-align: center;
}
h2 span {
  display: inline-block;
}
}



/* -------------------------
card list
------------------------- */

.flex_a{
  display:flex;
  gap:24px;
  flex-wrap:wrap;
}

.box_a{
    width: 70%;
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 6px 24px rgba(0,0,0,.05);
}
#personal-experience .flex_a .box_a img{
  aspect-ratio: 4 / 3;
  object-fit:cover;
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
}
.box_a h3{
  padding:24px;
  font-size:1.1rem;
}

.box_a_1{
  margin-top:20px;
}

#personal-experience .flex{
  display:flex;
  gap:32px;
  align-items:stretch;
}

#personal-experience .flex-basis-6,
#personal-experience .flex-basis-7,
#personal-experience .flex-basis-8,
#personal-experience .flex-basis-9{
  flex:1;
}

#personal-experience .box_a{
  height:100%;
  display:flex;
  flex-direction:column;
}

#personal-experience .box_a img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
}

@media screen and (max-width:768px){
    
.box_a{
width:95%;
margin: 0 auto;
}

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

.personal_title {
  margin: 0;
}
.personal_title3 {
  margin-top: 50px;

}
}

/* -------------------------
button
------------------------- */

.button,
.button_a{
  display:inline-block;
  background:#7d9a82;
  color:#fff;
  padding:14px 30px;
  border-radius:999px;
  font-size:15px;
  font-weight:700;
  margin-top:20px;
  box-shadow:0 8px 20px rgba(125,154,130,.25);
}

.button:hover,
.button_a:hover{
  background:#6d8a72;
  transform:translateY(-2px);
}

/* セクション内の位置基準 */
#contents{
  position:relative;
}
#contents h2 {
    margin-top: 200px;
    text-align: center;
}
/* ボタン右下 */

#contents .button{
  float:right;
  margin-top:24px;
  margin-bottom:32px;
}

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

#contents .button{
  float: none;
}

.contents_button {
  text-align: center;
}
}


/* -------------------------
3つの気のトレーニング
------------------------- */

.training_cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
  margin-top:40px;
}

.training_cards .flex-basis-3,
.training_cards .flex-basis-4,
.training_cards .flex-basis-5{
  background:#fff;
  border-radius:20px;
  padding:32px 24px;
  box-shadow:0 8px 24px rgba(0,0,0,.05);
  display:flex;
  flex-direction:column;
}

.training_cards h3{
  font-size:1.5rem;
  line-height:1.5;
  margin-bottom:16px;
}

.training_cards p{
  line-height:1.9;
  flex-grow:1;
}

.training_cards .button{
  margin-top:24px;
  align-self:flex-start;
}

.training_button {
    text-align: center;
}
/* SP */

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

  .training_cards{
    grid-template-columns:1fr;
    gap:24px;
  }

}

/* SP */

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

  #contents .flex{
    grid-template-columns:1fr;
  }

}

/* -------------------------
book
------------------------- */

#book{
  background:#fff;
  border-radius:24px;
  padding:60px;
  text-align:center;
}

#book img{
  width:260px;
  margin:0 auto 30px;
}


#book{
  background:#fff;
  border-radius:24px;
  padding:72px 56px;
}

.book-wrap{
  display:flex;
  align-items:center;
  gap:56px;
}

.book-image{
  width:32%;
}

.book-image img{
  width:100%;
  max-width:320px;
  margin:0 auto;
  box-shadow:0 16px 36px rgba(0,0,0,.12);
  border-radius:8px;
}

.book-text{
  flex:1;
}

.book-text h2{
  text-align:left;
  margin-bottom:28px;
}

.book-text h2::after{
  left:0;
  transform:none;
}

.book-text h3{
  font-size:1.1rem;
  margin-bottom:16px;
  line-height:1.8;
  text-align: left;
}

.price{
  font-size:1.25rem;
  font-weight:700;
  color:#2c4337;
  margin-top:28px;
}

.book-text .button{
  margin-top:24px;
}
#book{
  display:flex;
  align-items:center;
  gap:48px;
}

#book img{
  display:block;
  width:280px;
  max-width:100%;
  margin:0 auto;
}

#book > div{
  flex:1;
}

/* SP */

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

  #book{
    padding:40px 24px;
  }

  .book-wrap{
    flex-direction:column;
    gap:32px;
  }

  .book-image{
    width:70%;
  }

  .book-text h2{
    text-align:center;
  }

  .book-text h2::after{
    left:50%;
    transform:translateX(-50%);
  }
}
/* -------------------------
author
------------------------- */
/*
#Author{
  background:#f4f5ef;
}

.dire_photo{
  width:280px;
  margin:0 auto 30px;
}

.profile{
  background:#fff;
  padding:40px;
  border-radius:20px;
}

#Author .box:first-child{
  text-align:center;
}


.Author_title{
  font-size:1.8rem;
  margin-bottom:8px;
  line-height:1.4;
  text-align:center;
}

.Author_phonetics{
  margin-bottom:4px;
  color:#6f7a73;
  text-align:center;
}

#Author h5{
  margin-top:20px;
  line-height:2;
  font-weight:400;
  text-align:center;
  color:#56635b;
}
.Author_button {
text-align: right;
}

#Author .dire_photo{
  display:block;
  width:100%;
  max-width:300px;
  margin:0 auto 24px;
  border-radius:20px;
}
#Author .flex{
  display:flex;
  gap:48px;
  align-items:flex-start;
}

#Author .box{
  flex:1;
}
#Author .dire_photo{
  margin-left:auto;
  margin-right:auto;
}

*/

/* -------------------------
著者ご挨拶
------------------------- */

#Author .flex{
  display:flex;
  align-items:center;
}

#Author .box:first-child{
  width:100%;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
}

#Author .dire_photo{
  display:block;
  width:300px;
  max-width:100%;
  margin:0;
  border-radius:20px;
}

.Author_title,
.Author_phonetics,
#Author h5{
  text-align:center;
}

.Author_button {
text-align: right;
}
@media screen and (max-width:768px){
    
.Author_button {
    text-align: center;
}
}

/* -------------------------
books
------------------------- */

#books .box{
  text-align:center;
}

#books img{
  box-shadow:0 6px 20px rgba(0,0,0,.08);
}

#books p{
  margin-top:12px;
  font-size:.95rem;
}
#books{
  padding:80px 0;
}

.books-grid{
  display:grid;
  grid-template-columns:repeat(6, 1fr);
  gap:24px;
}

.book-item{
  text-align:center;
}

.book-item img{
  width:100%;
  border-radius:10px;
  box-shadow:0 8px 24px rgba(0,0,0,.08);
}

.book-item p{
  margin-top:12px;
  font-size:.95rem;
  line-height:1.6;
}


/* tablet */
@media screen and (max-width:1024px){

  .books-grid{
    grid-template-columns:repeat(3, 1fr);
  }

}


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

  .books-grid{
    grid-template-columns:repeat(2, 1fr);
    gap:20px;
  }

}

/* -------------------------
breadcrumb
------------------------- */

.breadcrumb{
  width:min(92%, 1200px);
  margin:24px auto;
  font-size:14px;
  color:#777;
}


/* -------------------------
top button
------------------------- */

.go-top{
  position:fixed;
  right:30px;
  bottom:30px;
  z-index:999;
}

.go-top a{
  width:60px;
  height:60px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#7d9a82;
  color:#fff;
  font-size:13px;
}


/* -------------------------
responsive
------------------------- */

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

section{
  padding:60px 0;
}

.flex,
.flex_a{
  flex-direction:column;
}

#lead{
  padding:32px;
}
.lead_button {
  text-align: center;
}
#top_contents .box:first-child{
  padding:28px;
}

h1{
  font-size:2rem;
}

h2{
  font-size:1.6rem;
}


}
#books .flex{
  overflow-x:auto;
  flex-wrap:nowrap;
  gap:20px;
}

#books .box{
  min-width:160px;
}
#top_contents img,
/* ボタン共通 */
.button,
.button_a{
  display:inline-block;
  width:auto;
  padding:12px 26px;
  border-radius:999px;
  font-size:15px;
  line-height:1.4;
}

/* -------------------------
lead
------------------------- */

#lead{
  background:#fff;
  border-radius:24px;
  padding:80px;
  margin:80px auto;
}

#lead img{
  margin-bottom:20px;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.lead_p{
  font-size:1.1rem;
  font-weight:700;
  color:#486050;
}

/* SPのみ */
@media screen and (max-width:768px){

  /* 全幅にしない */
  .button,
  .button_a{
    width:auto;
    max-width:fit-content;
    padding:12px 22px;
    font-size:14px;
  }

}
#books .link_a a{
  font-size:14px;
  padding:10px 20px;
}
@media screen and (max-width:768px){

  .flex{
    flex-direction:column;
    gap:24px;
  }
}