﻿
/*====================================
　早見表
  $conts-width
  $color-yellow  $color-blue
  $font-color-black
  $font-family-gothic  $font-family-mincho

  full-width
  flex-column  flex-center
  media(320px ＝ xs   480px ＝ s   768px ＝ m   1000px ＝ l)
  fs(max,1000～768px,768～480px,480～320px,min)  fs2(max,min)
  mt(max,min) mb mtb  pt pb ptb

====================================*/
/*====================================*/
/*----------------------------------
  Structure
----------------------------------
0. タグ設定
  0.1. ページサイズ
1. ヘッダー
  1.1	ナビゲーション
  1.2 見出し
2. コンテンツ
  2.1. トップへ戻る
3. フッター

====================================*/
/*----------------------------------
	0. タグ設定
------------------------------------*/
/* ------ ベース ------- */
html {
  font-size: 62.5%;
}

body {
  font-size: clamp(16px, 3.333vw, 18px);
  font-weight: normal;
  line-height: 1.9em;
  color: #000;
  font-family: Quicksand, 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  position: relative;
}

/* ------ link ------- */
a {
  color: #03C;
  text-decoration: none;
}

a:hover {
  color: #06F;
  text-decoration: underline;
}

a.textlinkUl {
  text-decoration: underline;
}

a img {
  border: none;
  border: 0;
}

a:hover img.link {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: alpha(opacity=60);
  -moz-opacity: 0.6;
  -khtml-opacity: 0.6;
  opacity: 0.6;
}

/* ------ img ------- */
@media screen and (max-width: 768px) {
  img {
    max-width: 100%;
    height: auto;
    width: auto;
  }
}
/*----------------------------------
	1. ヘッダー
------------------------------------*/
#site-header {
  background-color: rgba(255, 255, 255, 0.7);
}

.header-inner {
  margin: 0 auto;
  padding: clamp(10px, 1.302vw, 40px) 4%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .header-titles .logo img {
    width: clamp(160px, 33.333vw, 230px);
  }
}

/* メイン画像  ----------------------*/
.mainimg {
  position: relative;
}
.mainimg .mainimage__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
@media screen and (max-width: 480px) {
  .mainimg .mainimage__title {
    width: 94%;
  }
}
.mainimg .slick-slide img {
  width: 100%;
}

/*----------------------------------
	1.1. ナビゲーション
------------------------------------*/
/* フォントサイズ */
/* フォントの色 */
/* SP版背景 */
/* SP版ハンバーガーメニューの色 */
#nav li a {
  display: block;
  color: #000;
  position: relative;
  font-size: clamp(18px, 2.344vw, 20px);
}

#nav li a:hover {
  text-decoration: none;
  opacity: 0.7;
}

#nav .menu-item-has-children > a:after,
#nav .menu-item-has-children > a:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 10px;
  height: 1px;
  background: #000;
  transition: 0.2s;
}

#nav .menu-item-has-children > a:after {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}

#nav .menu-item-has-children > a.open:before {
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}

#nav .menu-item-has-children > a.open:after {
  background: transparent;
}

#nav .menu-item-has-children .sub-menu {
  display: none;
}

@media only screen and (max-width: 768px) {
  .overlay {
    width: 0;
    height: 0;
    position: fixed;
    z-index: 11;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s;
    background: rgba(255, 255, 255, 0.7);
  }
  .overlay.open {
    width: 100%;
    height: 100%;
    opacity: 1;
  }
  #main {
    transition: all 0.5s;
    min-height: 100vh;
  }
  #main.open {
    position: fixed;
    width: 100%;
  }
  #menu_btn {
    top: 14px;
    right: 1.5%;
    transition: 0.3s;
    cursor: pointer;
    position: fixed;
    z-index: 9999;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .menu-trigger {
    width: 18px;
    height: 16px;
    position: relative;
  }
  .menu-trigger span {
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #000;
    transition: all 0.5s;
  }
  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  .menu-trigger span:nth-of-type(2) {
    top: 7px;
  }
  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  #menu_btn.active .menu-trigger span:nth-of-type(1) {
    transform: translateY(7px) rotate(-45deg);
  }
  #menu_btn.active .menu-trigger span:nth-of-type(2) {
    opacity: 0;
  }
  #menu_btn.active .menu-trigger span:nth-of-type(3) {
    transform: translateY(-7px) rotate(45deg);
  }
  #nav {
    width: 280px;
    height: 100%;
    overflow: auto;
    padding: 90px 0;
    background-color: rgba(99, 198, 155, 0.8);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 12;
    transform: translate(280px);
    transition: all 0.5s;
  }
  #nav.open {
    transform: translateZ(0);
  }
  #nav li {
    padding: 0 20px;
  }
  #nav li a {
    position: relative;
    padding: 20px;
    color: #000;
  }
  #nav .menu-item-has-children > a:first-of-type {
    position: relative;
    padding-right: 2em;
  }
  #nav .menu-item-has-children > a.open:first-of-type {
    color: #000;
  }
  #nav .menu-item-has-children .sub-menu {
    margin-bottom: 20px;
  }
  #nav .menu-item-has-children .sub-menu li {
    padding: 0;
    margin-bottom: 20px;
  }
  #nav .menu-item-has-children .sub-menu li:last-child {
    margin-bottom: 0;
  }
  #nav .menu-item-has-children .sub-menu li a {
    padding: 0 20px 0 30px;
  }
}
@media print, screen and (min-width: 769px) {
  #menu_btn, .overlay {
    display: none;
  }
  #nav ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
  }
  #nav li {
    position: relative;
  }
  #nav li:not(:last-child) {
    margin-right: 10px;
  }
  #nav li a {
    padding: 0.5em;
  }
  #nav .current-menu-item a {
    color: #000;
  }
  #nav .menu-item-has-children > a {
    padding-right: 40px;
  }
  #nav .menu-item-has-children > a.open:first-of-type,
  #nav .current-menu-item a {
    color: #000;
  }
  #nav .current-menu-item li a {
    color: #000;
  }
  #nav li ul.sub-menu {
    flex-direction: column;
    background: #fff;
    position: absolute;
    width: 140px;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    padding: 10px 0;
  }
  #nav li ul.sub-menu li {
    width: 100%;
  }
  #nav li ul.sub-menu li a {
    line-height: 1.6em;
    color: #000;
    padding: 0.5em 20px;
    font-size: 90%;
  }
  #nav li ul.sub-menu li a:hover {
    color: #83759a;
  }
}
@media screen and (min-width: 768px) and (max-width: 850px) {
  #nav ul {
    justify-content: center;
    margin: auto;
  }
  #nav li a {
    padding: 1.5em 0.5em;
  }
}
/* Language */
.nav_language {
  position: absolute;
  right: 0px;
  top: 0;
}
.nav_language ul {
  display: flex;
}
.nav_language li {
  font-size: clamp(18px, 2.344vw, 20px);
}
.nav_language li a {
  display: block;
  padding: 4px 8px;
  border-left: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  color: #000;
  position: relative;
  font-size: 80%;
  line-height: 1;
  letter-spacing: 0.2em;
}
.nav_language li a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media only screen and (max-width: 768px) {
  .nav_language li a {
    font-size: 72%;
  }
}

/* Language(Footer) */
.footer_nav_language {
  margin: -30px 0 30px;
}
.footer_nav_language ul {
  display: flex;
  justify-content: center;
}
.footer_nav_language li {
  font-size: clamp(18px, 2.344vw, 20px);
}
.footer_nav_language li a {
  display: block;
  padding: 4px 8px;
  color: #000;
  position: relative;
  font-size: 80%;
  line-height: 1;
  letter-spacing: 0.2em;
}
.footer_nav_language li a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media only screen and (max-width: 768px) {
  .footer_nav_language li a {
    font-size: 72%;
  }
}

/*----------------------------------
	1.2. 見出し
------------------------------------*/
p {
  margin-bottom: 1em;
}

.h-style01 {
  font-size: clamp(30px, 3.906vw, 40px);
  font-weight: normal;
  line-height: 1.3em;
  letter-spacing: 0.24em;
  margin-bottom: 1.7em;
}
@media screen and (max-width: 768px) {
  .h-style01 {
    font-size: clamp(25px, 5.208vw, 30px);
  }
}

.h-style02 {
  display: flex;
  align-items: center;
  font-size: clamp(23px, 2.995vw, 28px);
  line-height: 2;
  letter-spacing: 0.34em;
  font-weight: normal;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .h-style02 {
    font-size: clamp(19px, 3.958vw, 23px);
  }
}
body#en .h-style02 {
  font-size: clamp(22px, 2.865vw, 24px);
  line-height: 2.3;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  body#en .h-style02 {
    font-size: clamp(18px, 3.75vw, 22px);
  }
}
@media screen and (max-width: 420px) {
  body#en .h-style02 {
    font-size: clamp(17px, 5.313vw, 18px);
    line-height: 2;
    letter-spacing: 0.15em;
  }
}

.h-style02::after {
  content: "";
  display: block;
  flex: 1;
  height: 3px;
  background-color: #63c69b;
  margin-left: 20px;
}

/*== 線がループして伸縮 */
.btn-style01 {
  text-align: right;
  padding-right: 0.5em;
}
.btn-style01 a {
  font-size: clamp(16px, 3.333vw, 18px);
  line-height: 2;
  letter-spacing: 0.08em;
  position: relative;
  color: #000;
  padding: 10px 0;
  display: inline-block;
  text-decoration: none;
  outline: none;
  /*線の設定*/
  /*ペンの設定*/
  /*線と矢印を繰り返しアニメーション*/
}
@media screen and (max-width: 768px) {
  .btn-style01 a {
    font-size: clamp(14px, 4.375vw, 16px);
  }
}
body#en .btn-style01 a {
  font-size: clamp(16px, 2.083vw, 18px);
  line-height: 2.2;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  body#en .btn-style01 a {
    font-size: clamp(14px, 2.917vw, 16px);
  }
}
@media screen and (max-width: 420px) {
  body#en .btn-style01 a {
    font-size: clamp(12px, 3.75vw, 14px);
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.btn-style01 a span {
  display: inline-block;
  padding: 0 1em 0 1.5em;
}
.btn-style01 a::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
}
.btn-style01 a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  width: 20px;
  height: 10px;
  background: url(../image/icon-pen.svg) no-repeat center;
  background-size: cover;
}
.btn-style01 a::before {
  animation: arrowlong01 2s ease infinite;
}
.btn-style01 a::after {
  animation: arrowlong02 2s ease infinite;
}

@keyframes arrowlong01 {
  0% {
    width: 0;
    opacity: 0;
  }
  20% {
    width: 0;
    opacity: 1;
  }
  80% {
    width: 104%;
    opacity: 1;
  }
  100% {
    width: 104%;
    opacity: 0;
  }
}
@keyframes arrowlong02 {
  0% {
    left: 0;
    opacity: 0;
  }
  20% {
    left: 0;
    opacity: 1;
  }
  80% {
    left: 102%;
    opacity: 1;
  }
  100% {
    left: 102%;
    opacity: 0;
  }
}
/*----------------------------------
	2. コンテンツ
------------------------------------*/
.conts__cell--0 {
  padding: 0;
}

.conts__cell--tb20 {
  padding: 20px 0;
}

.conts__cell--t20 {
  padding-top: 20px;
}

.conts__cell--b20 {
  padding-bottom: 20px;
}

.conts__cell--tb40 {
  padding: 40px 0;
}

.conts__cell--t40 {
  padding-top: 40px;
}

.conts__cell--b40 {
  padding-bottom: 40px;
}

.conts__cell--tb60 {
  padding: 60px 0;
}

.conts__cell--t60 {
  padding-top: 60px;
}

.conts__cell--b60 {
  padding-bottom: 60px;
}

.conts__cell--tb80 {
  padding: 80px 0;
}

.conts__cell--t80b40 {
  padding: 80px 0 40px;
}

.conts__cell--t80 {
  padding-top: 80px;
}

.conts__cell--b80 {
  padding-bottom: 80px;
}

.conts__inner {
  padding-left: 4%;
  padding-right: 4%;
}
@media screen and (max-width: 768px) {
  .conts__cell--tb80.sptb10 {
    padding-bottom: 10px;
  }
}
.full-width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: red;
}

.conts__titlebg {
  padding-top: clamp(50px, 6.51vw, 60px);
  padding-bottom: 1px;
  background: url(../image/bg-title01.png) no-repeat left top, url(../image/bg-title01-repeat.png) repeat-x;
  background-size: auto 100%;
}
@media screen and (max-width: 768px) {
  .conts__titlebg {
    padding-top: clamp(40px, 5.208vw, 50px);
  }
}

/*----------------------------------
	3. フッター
------------------------------------*/
#site-footer {
  padding: 40px 0;
}

.footer-move {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 60px;
}

.footer-nav {
  margin-bottom: 60px;
}
.footer-nav ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 580px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #000;
  padding: 0.2em 0.5em;
}

.footer-logo {
  text-align: center;
}
.footer-logo img {
  max-width: 150px;
}

.footer-menu-wrapper {
  max-width: 1200px;
  margin: 0 auto 50px;
  padding-top: 40px;
}

@media (max-width: 699px) {
  .footer-menu-wrapper {
    width: 96%;
  }
}
.footer-info {
  max-width: 1100px;
  margin: 0 auto 50px;
}

@media (max-width: 1000px) {
  .footer-info {
    width: 96%;
  }
}
.footer-info address {
  font-style: normal;
  font-size: 1.6rem;
  color: #000;
}

.footer-copyright {
  text-align: center;
  color: #7e7e7e;
  padding: 25px 0;
  margin: 0;
  font-size: 12px;
}

.pagetop {
  cursor: pointer;
  position: fixed;
  bottom: 50px;
  right: 30px;
  background-color: #000;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 20px;
  line-height: 50px;
  text-align: center;
  color: #fff;
}

.pagetop:hover {
  opacity: 0.5;
}

.column-box__title {
  width: 35%;
}

.column-box__body {
  width: 65%;
}/*# sourceMappingURL=base.css.map */