@charset "UTF-8";
/* ----------------------- */

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 0;
  min-height: 0;
}

html {
  font-size: 62.5%;
  line-height: 1.6;
  height: 100%;
}

@font-face {
  font-family: 'sawarabi';
  src: url('../font/SawarabiMincho-Regular.woff') format('woff');
}

@font-face {
  font-family: 'shippori';
  src: url('../font/shippori.woff') format('woff');
}

@font-face {
  font-family: 'helvetica';
  src: url('../font/YU-Helvetica-Bold.woff') format('woff');
}


body {
  background-color: #f2ecde;
  color: #120d0b;
  font-size: 1.6rem;
  font-family:"游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: bold;
  font-style: normal;
  width: 100%;
  letter-spacing: 0.1em;
}

.body-wrap {
  overflow: hidden;
}

@media(min-width: 961px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

p {
  font-size: 17px;
}

/* -------------------------- */
/*========= ナビゲーションのためのCSS ===============*/


#top-head {
  width: 100%;
  height: 80px;
  background-color: rgba(0, 0, 0, .95);
  display: flex;
  position: fixed;
  z-index: 998;
  transition: .2s;
}

#top-head .inner {
  width: 95%;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#top-head .flex-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 10px;
}
#g-nav ul {
  display: flex;
  list-style-type: none;
  align-items: center;
}

#g-nav li a {
  padding: 10px;
  position: relative;
  color: #fff;
}

#g-nav .to-contact-button a {
  background-color: #934f4b;
  border-radius: 3px;
  color: #fff;
}

#g-nav li a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 4px;
  background-color: #b79758;
  bottom: 0;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform .1s ease-in-out;
}

#g-nav li a:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}

.openbtn {
  display: none;
}

.header-logo {
  height: 60px;
  padding: 5px;
}

.header-logo img {
  height: 100%;
}

/* ヘッダーカラー変更 */
#top-head.change-color {
  background-color: rgba(0, 0, 0, .95);
  transition: .2s;
}
/* 言語切り替え */
.lang__button-box {
  width: 100px;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #353535;
  border-radius: 3px;
  text-align: center;
}

.lang__button-box a {
  display: block;
  color: #fff;
}

.lang__button-box__ttl {
  font-size: 1.2rem;
  letter-spacing: .05em;
}

.lang__button--flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 5px;
  background-color: #2a2a2a;
  border-radius: 3px;
}

.lang__button--jp,
.lang__button--en {
  width: 50%;
  border-radius: 3px;
  font-size: 1.5rem;
}

.lang__button--active {
  background-color: #b79758;
  border-radius: 3px;
}


/* ヘッダー上下 */
#top-head.UpMove{
	animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime{
  from {
    opacity: 1;
	transform: translateY(0);
  }
  to {
    opacity: 0;
	transform: translateY(-100px);
  }
}

/*　下に下がる動き　*/

#top-head.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 0;
	transform: translateY(-100px);
  }
  to {
  	opacity: 1;
	transform: translateY(0);
  }
}
/* -------ヘッダー上下 */



@media screen and (min-width:901px) {
  .nav-logo {
    display: none;
  }
}

@media screen and (max-width:900px) {
  #top-head .inner {
    width: 100%;
  }


  #top-head .flex-inner {
    display: block;
  }
  .header-logo {
    position: absolute;
    height: 50px;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
  }

  .lang__button-box {
    width: 60px;
    position:absolute;
    top: 50%;
    right:75px;
    transform: translateY(-50%);
  }

  .lang__button-box__ttl {
    font-size: 1.05rem;
  }
  
  .lang__button--flex {
    gap: 0 3px;
  }
  
  .lang__button--jp,
  .lang__button--en {
    width: 50%;
    border-radius: 3px;
    font-size: 1.3rem;
  }

  .nav-logo {
    display: block;
    width: 200px;
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
  }

  .nav-logo img {
    width: 100%;
  }

  #g-nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh;
    /*ナビの高さ*/
    background: url(../img/menu_card_bg.png)no-repeat;
    background-position: bottom right;
    background-size: 50%;
    background-color: #f2ecde;
    /*動き*/
    transition: all 0.3s;
  }

  /*アクティブクラスがついたら位置を0に*/
  #g-nav.panelactive {
    right: 0;
  }

  /*ナビゲーションの縦スクロール*/
  #g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  /*ナビゲーション*/
  #g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
  }

  /*リストのレイアウト設定*/

  #g-nav li {
    list-style: none;
    text-align: center;
  }

  #g-nav li a {
    color: #120d0b;
    text-decoration: none;
    padding: 10px;
    margin: 10px 0;
    font-size: 1.7rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
  }

  /*========= ボタンのためのCSS ===============*/
  .openbtn {
    position: fixed;
    z-index: 9999;
    /*ボタンを最前面に*/
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: inline-block;
  }

  /*×に変化*/
  .openbtn span {
    display: inline-block;
    position: absolute;
    left: 14px;
    height: 2px;
    background-color: #f2ecde;
    width: 35px;
  }

  .openbtn span:nth-of-type(1) {
    top: 15px;
  }

  .openbtn span:nth-of-type(2) {
    top: 23px;
  }

  .openbtn span:nth-of-type(3) {
    top: 31px;
  }

  .openbtn span:nth-of-type(3)::after {
    content: "Menu";
    position: absolute;
    top: 5px;
    left: -2px;
    color: #f2ecde;
    font-size: 1rem;
    text-transform: uppercase;
  }

  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 14px;
    transform: translateY(4px) rotate(-45deg);
    width: 35px;
    background-color: #120d0b;
  }

  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }

  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 14px;
    transform: translateY(-7px) rotate(45deg);
    width: 35px;
    background-color: #120d0b;
  }

  .openbtn.active span:nth-of-type(3)::after {
    content: "Close";
    transform: translateY(0) rotate(-45deg);
    top: 8px;
    left: 10px;
    color: #120d0b;
  }
}

/* 共通 */
.container-1100 {
  width: 95%;
  max-width: 1100px;
  margin: 0 auto;
}

.sectoin-rel {
  position: relative;
}

.kaigyo {
  display: inline-block;
}

/* button */
.katana-button-wrap {
  display: flex;
  justify-content:center;
}

.katana-button {
  position: relative;
  display: inline-block;
  padding: 8px 20px;
  width: 100%;
  max-width: 190px;
  min-width: 160px;
  text-align: center;
  transition: all 0.3s;
  color: #120d0b;
  z-index: 1;
  border: 2px solid #120d0b;
  font-family: 'sawarabi', serif;
  font-weight: normal;
}

.katana-button:before {
  position: absolute;
  content: "";
  background: url(../img/button_katana.svg)no-repeat;
  background-size: contain;
  background-position: center;
  top: 50%;
  transform: translateY(-50%);
  width: 90px;
  right: -55px;
  height: 15px;
  transition: 0.4s;
  transition: all 0.3s;
}

.katana-button:hover:before {
  right: -75px;
}

/* スクロールダウン */
.scrolldown4 {
  position: absolute;
  bottom: 2%;
  right: 50%;
  animation: arrowmove 1s ease-in-out infinite;
  height: 60px;
  z-index: 33;
}

.scrolldown4 img {
  height: 100%;
}

@keyframes arrowmove {
  0% {
    bottom: 1%;
  }

  50% {
    bottom: 3%;
  }

  100% {
    bottom: 1%;
  }
}

.scrolldown4 span {
  position: absolute;
  left: -20px;
  bottom: 10px;
  color: #b79758;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}


/* アニメーション */
.fadeUpTrigger {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-delay: .5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* マーカー */

.marker {
  display: inline;
  position: relative;
  background: linear-gradient(transparent 50%, yellow 50%);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0 50%;
  transition-property: all;
  transition-duration: 1s;
  transition-delay: 1.5s;
  transition-timing-function: ease-in-out;
}

.marker.ugokumarker {
  background-size: 100% 50%;
}

.main-content {
  position: relative;
  /*.mv-box--imgよりも配置を上にするためにrelativeをつける*/
  z-index: 1
    /*.mv-box--imgよりもz-indexの値を大きな数値にして上に表示*/
}


/* main */

/* index.html */

/* section.prof */
.prof {
  background-color: #f2ecde;
  padding-top: 100px;
}

.prof--under {
  z-index: -5;
}

.bg-iai {
  position: absolute;
  top: 25%;
  left: -5%;
  opacity: .6;

  transform: translate(0%, -50%);
  width: 30vw;
  z-index: -1;
}

.bg-iai img {
  width: 100%;
  opacity: 1;
  /* drop-shadow */
  filter: drop-shadow(4px 2px 5px rgba(116, 116, 116, 0.3));
}

.prof__item {
  padding: 100px 0;
}

.prof__item--flex {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.prof__item__img {
  width: 80%;
  margin-left: auto;
  margin-right: calc(50% - 50vw);
}

.prof__item__img--rel {
  position: relative;
}

.prof__bg__img--full {
  width: 100%;
}

.prof__bg__img--full img {
  width: 100%;
}

.prof__item__img img {
  width: 100%;
}

.prof__item__txt-box {
  width: 60%;
}

.prof__item__txt-box--rel {
  position: relative;
}

.prof__item__ttl {
  width: 95%;
  max-width: 750px;
}

.prof__item__ttl img {
  width: 100%;
}

.prof__item__ttl--ft {
  font-size: 3.2rem;
  font-family: 'sawarabi',serif;
}

.prof__item__ttl--ft--main-ttl {
  text-align: center;
  margin: 40px auto;
}

.prof__item__ttl--ft--black {
  color: #120d0b;
}

.prof__item__ttl--main-ttl {
  margin-top: 120px;
  margin-bottom: 10px;
}

.prof__item--sub-ttl {
  font-family: 'shippori', serif;
  font-size: 3rem;
  color: #120d0b;
  margin: 0 0 30px 10px
}

.prof__item__txt {
  font-size: 2.2rem;
  font-weight: bold;
}

.prof__item__txt--black {
  color: #120d0b;
}

/* section.media */

.media {
  background-color: #f2ecde;
  padding: 100px 0;
}

.media__list-box {
  width: 95%;
  max-width: 900px;
  margin: 0 auto;
}

.media__list--black {
  color: #120d0b;
}


.list--dia > li {
  position: relative;
  padding: 0px 0px 0px 1em;
  list-style: none;
  font-size: 2rem;
}
.list--dia > li::before {
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%) rotate(45deg);
  width: 0.5em;
  height: 0.5em;
  background-color: #934f4b;
  content: "";
}

.media__list--flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.etc {
  text-align: right;
  margin: 20px 0 ;
}

.etc--black {
  color: #120d0b;
}

/* section.info */

.info {
  background-color: #f2ecde;
  padding: 100px 0;
}

.info__item {
  margin-top: 30px;
}

.info__item--flex {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.info__item__ttl {
  width: 95%;
  max-width: 450px;
  margin:0 auto;
}

.info__item__ttl--small {
  width: 80%;
  max-width: 350px;
}

.info__item__ttl img {
  width: 100%;
}

.info__item__ttl--ft {
  font-size: 3rem;
}

.info__item__ttl--ft--main-ttl {
  text-align: center;
  margin: 40px auto 0;
}

.info__item__ttl--ft--black {
  color: #120d0b;
}

.info__item__ttl--main-ttl {
  margin-top: 120px;
  margin-bottom: 10px;
}

.info__item--sub-ttl {
  font-family: 'shippori', serif;
  font-family: 'shippori', serif;
  text-align: center;
  font-size: 3rem;
  color: #120d0b;
  margin: 0 0 0px 10px;
}

.info__item__txt-box {
padding: 10px;
width: 50%;
}

.info__item__hl {
  font-size: 2rem;
}

.info__item__txt {
  margin: 10px 0;
}

.info__item__txt-black {
  color: #120d0b;
}

.map {
  width: 50%;
}

.map iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

/* section.contact */

.mailform {
  padding: 50px 0;
}


.form-container {
  width: 90%;
  max-width: 900px;
  margin: 30px auto 0;
}

#formWrap {
  width: 100%;
  margin: 0 auto;
  color: #120d0b;
  line-height: 120%;
  font-size: 90%;
  text-align: left;
}

table.formTable {
  width: 100%;
  margin: 0 auto 20px;
  border-collapse: collapse;
}


table.formTable td, table.formTable th {
  /* border:1px solid #ccc; */
  padding: 7px;
  border: solid 1px #e0e0e0;
}

table.formTable td {
  background-color: rgba(255,255,255,.8);
}


table.formTable th {
  width: 40%;
  font-weight: 600;
  /* background:#4ba8de; */
  color: #120d0b;
  vertical-align: middle;
  text-align: left;
  background-color:rgba(237, 237, 237, 0.6);
  padding-left: 15px;
}


.formTable .caution-text {
  color: #934f4b;
  font-size: 1.3rem;
}
table.formTable textarea {
  width: 100%;
  border: none;
  box-shadow: 0 0 0 1px #ccc inset;
  background-color: #fff;
}


.contact-button {
  display: inline-block;
  border-radius: 5%;
  /* 角丸    */
  font-weight: 700;
  font-size: 16px;
  /* 文字サイズ */
  text-align: center;
  /* 文字位置   */
  cursor: pointer;
  /* カーソル   */
  padding: 12px 12px;
  /* 余白       */
background-color: #934f4b;/* 背景色     */
  color: #ffffff;
  /* 文字色     */
  line-height: 1em;
  /* 1行の高さ  */
  transition: .3s;
  /* なめらか変化 */
  box-shadow: 2px 2px 0px #dcdddd;
  /* 影の設定 */
  /* 枠の指定 */
  width: 100%;
  max-width: 150px;
  border: #934f4b solid 2px;
}

.contact-button:hover {
  box-shadow: none;
  /* カーソル時の影消去 */
  color: #934f4b ;
  /* 背景色     */
  background: #ffffff;
  border:#934f4b solid 2px;
  /* 文字色     */
}

.reset-button {
  background: #fff;
  /* 背景色     */
  color: #934f4b;
  /* 文字色     */
}

.reset-button:hover {
  box-shadow: none;
  /* カーソル時の影消去 */
  color: #fff;
  /* 背景色     */
  background: #934f4b;
  /* 文字色     */
}


.button-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.button-wrapper input {
  margin-bottom: 20px;
}


.m-form-text {
  height: 2.4em;
  width: 100%;
  padding: 0 16px;
  border: none;
  box-shadow: 0 0 0 1px #ccc;
  background-color: #fff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.m-form-text:hover,
.m-form-textarea:hover {
  background-color: rgba(33, 150, 243,.1) ;
}

.m-form-text:focus,
.m-form-textarea:focus {
  outline: 0;
  box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
}



.button {
  display: inline-block;
  border-radius: 5%;
  /* 角丸       */
  font-size: 12pt;
  /* 文字サイズ */
  text-align: center;
  /* 文字位置   */
  cursor: pointer;
  /* カーソル   */
  padding: 10px 25px;
  /* 余白       */
  background: #333333;
  /* 背景色     */
  color: #ffffff;
  /* 文字色     */
  line-height: 1em;
  /* 1行の高さ  */
  transition: .3s;
  /* なめらか変化 */
  box-shadow: 1px 1px #666666;
  /* 影の設定 */
  border: 1px solid #333333;
  /* 枠の指定 */
}

.button:hover {
  box-shadow: none;
  /* カーソル時の影消去 */
  color: #333333;
  /* 背景色     */
  background: #ffffff;
  /* 文字色     */
}

/* ラジオボタン */
input[type="radio"] {
  margin-left: 20px;
}
.radio-box-p {
  display: flex;
  justify-content: space-between;
  max-width: 400px;
}
@media screen and (max-width:768px) {
  .radio-box-p {
    display:block;
  }
}

/* セレクト */
select {
  padding: 5px 16px;
  border: none;
  box-shadow: 0 0 0 1px #ccc inset;
  color: #555;
}

/* カレンダー選択 */
input[type="date"] {
  width: 150px;
  position: relative;
  height: 2.4em;
  padding: 0 16px;
  border: none;
  box-shadow: 0 0 0 1px #ccc inset;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 5px 20px 5px 0;
}
input[type="date"]::-webkit-inner-spin-button {
  appearance: none;
}
input[type="date"]::-webkit-clear-button {
  appearance: none;
}

input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}

input[type="date"]:focus {
  outline: 0;
  box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
}
.form-flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 10px;
  width: 70%;
  max-width: 250px;
  margin: 0 0 auto 0;
}

.select-box{
  width: 150px;
  height: 2.4em;
  border: none;
  box-shadow: 0 0 0 1px #ccc inset;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 5px 20px 5px 0;
}
.select-box select {
  text-align: center;
}

@media screen and (max-width:599px) {

  .form-container {
    width: 100%;
    max-width: none;
    margin: 0 auto;
  }

  #formWrap {
    width: 90%;
    margin: 0 auto;
  }

  table.formTable th, table.formTable td {
    width: auto;
    display: block;
  }

  table.formTable th {
    border-bottom: 0;
    padding: 10px;
    
  }

  input[type="text"], textarea {
    width: 100%;
    padding: 5px;
    font-size: 110%;
    display: block;
  }

  input[type="submit"], input[type="reset"], input[type="button"] {
    /* display:block; */
    height: 40px;
  }

}

@media screen and (min-width:901px) {
  .form-sp {
    display: none;
  }
}

@media screen and (max-width:900px) {
  .form-sp {
    display: block;
  }
}

/* section.mailform end */

/* 斜めに斬るエフェクト */
.slash-box-p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 120vh;
  z-index: 10;
}

.slash-box {
  position: relative;
}

/* section毎の斬撃背景色 */
.prof-slash-box__role {
  background-color: #f2ecde;
}

/* ----------------- */
.slash-box__role {
  width: 100%;
  height: 120vh;
}

.slash-box .slash-box__role:nth-child(2),
.slash-box .slash-box__role:nth-child(3),
.slash-line {
  position: absolute;
  left: 0;
  top: 0;
}

.slash-box .slash-box__role:nth-child(1) {
  -webkit-clip-path: polygon(100% 0, 1% 0, 100% 99%);
  clip-path: polygon(100% 0, 1% 0, 100% 99%);
  transition: -webkit-transform .6s;
  transition: transform .6s;
  transition: transform .6s, -webkit-transform .6s;
}

.slash-box .slash-box__role:nth-child(2) {
  -webkit-clip-path: polygon(0 1%, 0% 100%, 99% 100%);
  clip-path: polygon(0 1%, 0% 100%, 99% 100%);
}

.slash-box .slash-box__role:nth-child(3) {
  opacity: 1;
  transition: opacity .1s .6s;
}

.slash-fade-line {
  animation-name: slash-effect-line;
  animation-fill-mode: forwards;
  animation-duration: .1s;
  animation-iteration-count: 1;
  animation-timing-function: ease;
  animation-delay: 0.2s;
  animation-direction: normal;
}

.slashTriggerline {
  opacity: 0;
}

.slash-line {
  background-color: #fff;
  width: 100%;
  height: 100%;
  -webkit-clip-path: polygon(0 1%, 1% 0, 100% 99%, 99% 100%);
  clip-path: polygon(0 1%, 1% 0, 100% 99%, 99% 100%);
  -webkit-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
  transition: -webkit-transform .1s;
  transition: transform .1s;
  transition: transform .1s, -webkit-transform .1s;
}

/* slash-lineが斜めに斬る */
@keyframes slash-effect-line {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }


  100% {
    opacity: 0;
    -webkit-transform: translate(100%, 100%);
    transform: translate(100%, 100%);
  }
}


.slash-fade-top {
  animation-name: slash-effect-top;
  animation-fill-mode: forwards;
  animation-duration: 2s;
  animation-iteration-count: 1;
  animation-timing-function: ease;
  animation-delay: 0.5s;
  animation-direction: normal;
}

@keyframes slash-effect-top {
  0% {
    opacity: 1;
  }


  50% {
    -webkit-transform: translate(15%, 15%);
    transform: translate(15%, 15%);
  }

  100% {
    opacity: 0;
  }
}

.slash-fade-bottom {
  animation-name: slash-effect-bottom;
  animation-fill-mode: forwards;
  animation-duration: 2s;
  animation-iteration-count: 1;
  animation-timing-function: ease;
  animation-delay: 0.5s;
  animation-direction: normal;
}

@keyframes slash-effect-bottom {
  0% {
    opacity: 1;
  }

  50% {
    -webkit-transform: translate(-15%, -15%);
    transform: translate(-15%, -15%);
  }

  100% {
    opacity: 0;
  }
}

/* 斬れめ */
.slash-fade-center {
  animation-name: slash-effect-center;
  animation-fill-mode: forwards;
  animation-duration: .4s;
  animation-delay: .3s;
  animation-iteration-count: 1;
  animation-timing-function: ease;
  animation-direction: normal;
}

@keyframes slash-effect-center {
  0% {
    opacity: 1;
  }

  50% {
    background-color: #fff;
  }

  100% {
    opacity: 0;

  }
}



/* footer */
.g-footer {
  background-color: #120d0b;
  padding: 100px 0 10px;
}

.g-footer--flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 50px auto;

}

.g-footer__nav__list li {
  margin: 10px 0;
}

.g-footer__nav__list li a {
  color: #f2ecde;
  position: relative;
}

.g-footer__nav__list li a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 4px;
  background-color: #b79758;
  bottom: 0;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform .1s ease-in-out;
}

.g-footer__nav__list li a:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}


.g-footer__info p {
  color: #f2ecde;
}


.g-footer__logo {
  width: 90%;
  max-width: 300px;
  margin: 10px auto;
}

.g-footer__logo img {
  width: 100%;
}

.g-footer small {
  text-align: center;
  display: block;
  color: #f2ecde;
}


/* footer-tel-button */
@media screen and (min-width:769px) {
  #footer__button {
    display: none;
  }
}
@media screen and (max-width:768px) {
  .is-hidden {
    visibility: hidden;
    transition: .2s;
    opacity: 0;
  }
  
  #footer__button {
    display: block;
    transition: .2s;
    z-index: 9998;
    position: fixed;
  width: 100%;
    background-color:#934f4b;
    font-size: 1.5rem;
    padding: 3px 5px;
    text-align: center;
  }
  #footer__button span {
    font-family: 'sawarabi',serif;
    font-weight: bold;
    font-size: 2rem;
  }
  #footer__button a {
    color: #fff;
  }
  /* footer__button end */
}


/* lecture-profiles */
.sub-v-box {
  position: relative;
  /*背景を設定するdivの基点とするためrelativeをかける*/
  width: 100%;
  height: 40vh;
  overflow: hidden;
  /*はみ出しているところを隠す*/
}

/* 768px以下レスポンシブ */
@media screen and (max-width:768px) {

  /* prof */
  .prof__item--flex {
    display: flex;
    flex-direction: column-reverse;
  }


  .prof__item__img {
    width: 90%;
    z-index: -1;
  }

  .prof__item__img--rel {
    position: relative;
  }

  .prof__item__img img {
    width: 100%;
  }


  .prof__item__ttl {
    width: 85%;
  }


  .prof__item__ttl--main-ttl {
    margin-top: 50px;
    margin-bottom: 10px;
  }


  .prof__item--sub-ttl {
    font-size: 2.6rem;
    color: #120d0b;
    margin: 0 0 30px 10px
  }

  .prof__item__txt-box {
    width: 100%;
    z-index: 6;
  }

  .prof__item__txt {
    font-size: 2rem;
  }

  .bg-iai {
    position: absolute;
    top: 30%;
    left: -5%;
    z-index: 0;
    width: 40vw;
    opacity: .8;
  }

  /* info */
  .info__item__ttl {
    width: 85%;
  }

  .info__item__ttl--small {
    width: 53%;
  }

  .info__item__ttl--main-ttl {
    margin-top: 50px;
    margin-bottom: 10px;
  }

  
  .info__item--sub-ttl {
    font-size: 2.6rem;
    color: #120d0b;
    margin: 0 0 30px 10px
  }

  
.info__item--flex {
  display: block;
  margin: 0 auto;
}


.info__item__txt-box {
  width: 100%;
  }

  .map {
    width: 90%;
    margin: 0 auto;
  }

  .map iframe {
    aspect-ratio: 1/1;
  }
  
 
  /* footer */
  .g-footer {
    padding: 30px 0 10px;
  }

  .g-footer--flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 10px auto;
    text-align: center
  }

  .g-footer__nav__list li {
    margin: 10px 0;
  }

  .g-footer__nav__list li a {
    position: relative;
    ;
  }

  .g-footer__nav__list li a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    border-radius: 4px;
    background-color: #b79758;
    bottom: 0;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .1s ease-in-out;
  }

  .g-footer__nav__list li a:hover::before {
    transform-origin: left;
    transform: scaleX(1);
  }


  .g-footer__logo {
    width: 90%;
    max-width: 300px;
    margin: 10px auto;
  }

  .g-footer__logo img {
    width: 100%;
  }

  .g-footer small {
    text-align: center;
    display: block;
    color: #f2ecde;
  }

}



/* 599px以下レスポンシブ */
@media screen and (max-width:599px) {
  /* prof */

  .prof {
    padding-top: 0px;
  }

  
  .prof__item__ttl {
    width: 55%;
  }

  .prof__item--sub-ttl {
    font-size: 2.2rem;
    color: #120d0b;
    margin: 0 0 20px 5px;
  }

  .prof__item__txt {
    font-size: 1.6rem;
  }


  .info__item--sub-ttl {
    font-size: 2.2rem;
    color: #120d0b;
    margin: 0 0 20px 5px;
  }

  .info__item__hl {
    font-size:1.7rem;
  }

  .info__item__txt {
    font-size: 1.6rem;
  }
  

}


@media screen and (max-width:768px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}

@media screen and (min-width:768px) {
  .pc {
    display: block;
  }

  .sp {
    display: none;
  }
}