@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
/*///////////// 共通 文字について ///////////// */
body {
  color: #000000; /* RGB */
  font-family: 'YuGothic','Yu Gothic','游ゴシック体','游ゴシック','a-otf-midashi-go-mb31-pr6n','Hiragino Kaku Gothic ProN','Hiragino Kaku Gothic Pro','ヒラギノ角ゴ ProN W3','ヒラギノ角ゴシック','Hiragino Sans',sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.4rem;
  text-align: left;
  letter-spacing: 0.275px;
  /* 画面幅を1000pに固定した */
  max-width: 1000px;
  margin: auto;
 }
h1 {
  color: #000000; /* RGB */
  font-family: 'YuGothic','Yu Gothic','游ゴシック体','游ゴシック','a-otf-midashi-go-mb31-pr6n','Hiragino Kaku Gothic ProN','Hiragino Kaku Gothic Pro','ヒラギノ角ゴ ProN W3','ヒラギノ角ゴシック','Hiragino Sans',sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 4.0rem;
  text-align: left;  
  letter-spacing: 1.8px;  
}
h2 {
  color: #000000; /* RGB */
  font-family: 'YuGothic','Yu Gothic','游ゴシック体','游ゴシック','a-otf-midashi-go-mb31-pr6n','Hiragino Kaku Gothic ProN','Hiragino Kaku Gothic Pro','ヒラギノ角ゴ ProN W3','ヒラギノ角ゴシック','Hiragino Sans',sans-serif;
  font-weight: 600;
  font-size: 2.2rem;
  line-height: 4.0rem;
  text-align: center;
  letter-spacing: 2px;
}
.h2_sub {
  color: #000000; /* RGB */
  font-family: 'Baskerville','Georgia',sans-serif;
  font-weight: 600;
  font-size: 4.0rem;
  line-height: 4.0rem;
  text-align: center;
  margin-right: 10px;
  letter-spacing: 2px;
  vertical-align: -4px;
}
.h2_title_box {
  display: flex;
}
.h2_title_box h2 {
  vertical-align: middle;
  background-color: #ffffff;
  border-right: solid 1px #000000;
  border-bottom: solid 1px #000000;
  height: 60px;
  line-height: 60px;
  margin-bottom: 30px;
  /* 左右センター揃え */
  margin-left: auto;
  margin-right: auto;
}
.h2_title {
  display: flex;
  justify-content: center;
  padding-left: 60px;
  padding-right: 60px;
  align-items: center;
}
.h2_title span {
  line-height: 1;
}
h3 {
  color: #000000; /* RGB */
 font-family: 'YuGothic','Yu Gothic','游ゴシック体','游ゴシック','a-otf-midashi-go-mb31-pr6n','Hiragino Kaku Gothic ProN','Hiragino Kaku Gothic Pro','ヒラギノ角ゴ ProN W3','ヒラギノ角ゴシック','Hiragino Sans',sans-serif;
  font-weight: 600;
  font-size: 3.0rem;
  line-height: 4.5rem;
  text-align: left;
}
h4 {
  color: #000000; /* RGB */
  font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','游明朝体+36ポかな','YuMincho +36p Kana','ヒラギノ明朝 ProN','Hiragino Mincho ProN', sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 2.4rem;
  letter-spacing: 1.5px;
}
.h4_sub {
  color: #000000; /* RGB */
 font-family: 'YuGothic','Yu Gothic','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','ヒラギノ角ゴシック','Hiragino Sans',sans-serif;
  font-weight: 600;
  font-size: 2.0rem;
  letter-spacing: 2px;
}
/* リンク文字の下線と青色消す */
.more_text {
  text-decoration: none;
  color: #000000;
}
.underline {
  border-width: 1px;
}
.underline_link {
  color: #000000;
}
.underline_link:hover {
  transition: 0.5s; /*時間*/
  opacity: 0.2; /*透過*/
}
/* ハイフンの位置を調整する */
.hyphen {
  vertical-align: 4px;
}
/*///////////// 共通 ヘッダー PC ///////////// */
.header {
  /*   position: relative;でヘッダーの位置指定（メニューボタンの絶対配置の基準となる） */
  width: 100%;
  display: flex;
  background-color: #fff;
  height: 136px;
  line-height: 136px;
  z-index: 100;
  position: fixed; /*ヘッダー固定*/
  padding-left: 30px;
  padding-right: 30px;
}
.header_logo {
  width: 108px;
  height: auto;
  vertical-align: middle;
  margin-left: auto;
  /*/////ヘッダーアニメーション////// */
  opacity: 0;
  animation-name: fadein-bottom;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}
@keyframes fadein-bottom {
  0% {
    opacity: 0;
    transform: translateY(-80px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.header a {
  display: inline-block;
  text-decoration: none;
}
.header ul li a:hover {
  opacity: 0.2; /*透過*/
  transition: 0.8s; /*時間*/
  letter-spacing: 6px;
  cursor: pointer;
}
.header_icon_instagram {
  width: 24px;
  padding-top: 56px;
  padding-right: 30px;
}
.header_menu_min700px {
  display: inline-block;
  width: 862px;
  margin-right: 30px;
}
.header_menu {
  display: block;
  float: right;
  /*/////ヘッダーアニメーション////// */
  opacity: 0;
  animation-name: fadein-bottom;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}
.header nav ul {
  display: flex;
}
.header nav li a {
  display: flex;
  color: #000000;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  margin-left: 30px;
}
.header_menu_max700px {
  display: none;
}
/*///////////// 共通 フッター ///////////// */
.footer {
  /* フッターの文字 */
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 1.4px;
  /* フッターの枠 */
  height: 180px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 35px;
  display: flex;
  /* ボックスに対して下揃え */
  align-items: flex-end;
  /* 左右両端揃え */
  justify-content: space-between;
}
.footer_copyright p {
  font-size: 1.3rem;
  margin-bottom: 5px;
  letter-spacing: 3px;
}
.footer_address {
  text-decoration: none;
  color: #000000;
}
.footer_address:hover {
  opacity: 0.2; /*透過*/
  transition: 0.8s; /*時間*/
  letter-spacing: 5px;
}
.footer_logo {
  width: 88px;
  height: auto;
  vertical-align: middle;
  padding-left: 30px;
}
.footer_logo:hover {
  opacity: 0.2; /*透過*/
  transition: 0.8s; /*時間*/
}
/* /////////////// 画面幅が700px以下になった時 ////////////////*/
@media (max-width: 700px) {
  .h4_sub {
    font-size: 1.7rem;
  }
  .header {
    /*   position: relative;でヘッダーの位置指定（メニューボタンの絶対配置の基準となる） */
    display: block;
    height: 100px;
    line-height: 100px;
    padding-left: 0px;
    padding-right: 0px;
    width: 100%;
    z-index: 100;
    position: fixed; /*ヘッダー固定*/
  }
  .header_logo {
    width: 88px;
    height: auto;
    vertical-align: middle;
    padding-left: 30px;
  }
  .header nav ul {
    display: none;
  }
  .header_menu {
    display: none;
  }
  .header_menu_max700px {
    display: block;
  }
  .nav-toggle {
    display: none;
  }
  .btn-burger {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 2;
    display: block;
    width: 40px;
    height: 40px;
    background: url(../img/burger.svg) center center / 40px 40px no-repeat;
    cursor: pointer;
    /*/////ヘッダーアニメーション////// */
    opacity: 0;
    animation-name: fadein-bottom;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  .nav-toggle:checked ~ .btn-burger {
    background: url(../img/close.svg) center center / 40px 40px no-repeat;
  }
  .nav {
    display: block;
    background-color: rgba(240, 240, 240, 0.95);
    margin-right: 0;
    margin-top: -100px;
  }
  .nav-list {
    display: none;
    margin: 0;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .nav-list li {
    margin: 0;
    text-align:center;
  }
  .nav-list a {
    display: block;
    color: #fff;
    text-align-last: center;
    justify-content: center;     /* アイテムを中央に寄せる */
    margin-left: 0px;
    margin-right: 0px;
  }
  .header nav li a {
    display: block;
    color: #000000;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-left: 0px;
    height: 74px;
    line-height: 74px;
    animation-name: nav;
    animation-duration: 2s;
  }
  .header_icon_instagram {
    padding-top: 0px;
  }
  .nav-toggle:checked ~ .nav .nav-list {
    display: block;
  }
  .header_icon_instagram {
    padding-right: 0px;
  }
}
@keyframes nav {
  from {
    opacity: 0%;
  }
  to {
    opacity: 100%;
  }
}
/* //////画面幅が630px以下になった時///////*/
@media (max-width: 630px) {
  h2 {
    font-size: 1.8rem;
    line-height: 3.2rem;
  }
  .h2_sub {
    font-size: 3.8rem;
    margin-right: 0px;
    vertical-align: 0px;
    margin-bottom: 5px;
  }
  .h2_title_box h2 {
    background-color: #ffffff;
    border-right: solid 1px #000000;
    border-bottom: solid 1px #000000;
    height: 84px;
    padding-bottom: 5px;
    /*line-height: 60px;*/
    margin-bottom: 30px;
    /* 左右センター揃え */
    margin-left: auto;
    margin-right: auto;
  }
  .h2_title {
    display: flex;
    padding-top: 5px;
    padding-left: 30px;
    padding-right: 30px;
    align-items: center;
    flex-direction: column;
  }
  .h2_title div {
    line-height: 1;
  }
  .footer {
    /* フッターの文字 */
    font-size: 1.1rem;
    /* フッターの枠 */
    height: 180px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
    display: flex;
    /* 縦積み */
    flex-flow: column;
    /* 下寄せ */
    justify-content: flex-end;
  }
  .footer_address {
    font-size: 1.1rem;
  }
  .footer_copyright {
    order: 1;
    text-align: right;
  }
  .footer_logo {
    margin-bottom: 15px;
    order: 2;
    width: 75px;
    height: auto;
  }
  .footer_copyright p {
    margin-bottom: 0;
    line-height: 1.8rem;
  }
}
/* //////画面幅が450px以下になった時///////*/
@media (max-width: 450px) {
  .footer {
    /* フッターの枠 */
    height: 180px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 35px;
    display: flex;
    /* 縦積み */
    flex-flow: column;
    /* 下寄せ */
    justify-content: flex-end;
    text-align: center;
  }
  .footer_logo_box {
    margin-right: auto;
    margin-left: auto;
  }
  .footer_logo {
    display: block;
    margin-bottom: 15px;
    padding-left: 0px;
    order: 2;
  }
  .footer_copyright {
    order: 1;
    text-align: center;
    width: 100%;
    line-height: 2rem;
  }
  .footer_copyright p {
    display: none;
  }
}