@charset "UTF-8";
/*====================================
　早見表
  $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(14px, 2.917vw, 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); } }

.header-titles {
  width: 300px; }
  @media screen and (max-width: 768px) {
    .header-titles {
      width: clamp(160px, 33.333vw, 230px); } }
  .header-titles .logo {
    line-height: 0; }
    .header-titles .logo a:hover {
      text-decoration: none; }

/* メイン画像  ----------------------*/
.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: .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 .5s;
    background: rgba(255, 255, 255, 0.7); }
    .overlay.open {
      width: 100%;
      height: 100%;
      opacity: 1; }

  #main {
    transition: all .5s;
    min-height: 100vh; }
    #main.open {
      position: fixed;
      width: 100%; }

  #menu_btn {
    right: 1.5%;
    transition: .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 .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: #63c69bcc;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 12;
    transform: translate(280px);
    transition: all .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%;
    -webkit-transform: translateX(-50%);
    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; } }
/*----------------------------------
	1.2. 見出し
------------------------------------*/
p {
  margin-bottom: 1em; }

.h-style01 {
  font-size: clamp(30px, 3.906vw, 34px);
  line-height: 1.3em;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #e95513; }
  @media screen and (max-width: 768px) {
    .h-style01 {
      font-size: clamp(24px, 5vw, 30px); } }

.h-style02 {
  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); } }

.h-style03 {
  display: inline-block;
  font-size: clamp(14px, 2.917vw, 18px);
  line-height: 2;
  letter-spacing: 0.08em;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 0.7em;
  border-bottom: solid 1px #555;
  padding-right: 1.5em; }
  @media screen and (max-width: 768px) {
    .h-style03 {
      font-size: clamp(14px, 4.375vw, 16px); } }

.h-style04 {
  margin-bottom: 40px;
  font-size: clamp(18px, 2.344vw, 22px);
  font-weight: 500;
  padding: 1rem 2rem;
  border-top: 2px solid #e95513;
  border-bottom: 2px solid #e95513;
  background-color: #ffffff;
  color: #e95513;
  text-align: center;
  background-color: #e554130f; }

.h-style05 {
  display: block;
  font-size: clamp(13px, 2.708vw, 14px);
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  padding: 5px 0;
  color: #6e6e6e;
  border-radius: 6px; }

.h-style06 {
  position: relative;
  padding: .5em .7em;
  border-radius: 10px;
  background-color: #f6abab;
  color: #fff;
  margin-bottom: 30px; }
  .h-style06:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 30px;
    width: 0;
    height: 0;
    border: 11px solid transparent;
    border-top: 11px solid #f6abab; }

.h-style07 {
  position: relative;
  padding-left: 1em;
  font-weight: 500;
  font-size: clamp(30px, 3.906vw, 34px);
  line-height: 1.3em;
  letter-spacing: 0.1em; }
  @media screen and (max-width: 768px) {
    .h-style07 {
      font-size: clamp(24px, 5vw, 30px); } }
  .h-style07:after {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    content: '';
    width: 20px;
    height: 4px;
    background-color: #446689; }

.h-style08 {
  text-align: center; }
  .h-style08 span {
    position: relative;
    display: inline-block;
    padding: 0 0.5em;
    color: #e95513;
    font-size: clamp(30px, 3.906vw, 34px);
    line-height: 1.3em;
    letter-spacing: 0.1em;
    font-weight: 500; }
    @media screen and (max-width: 768px) {
      .h-style08 span {
        font-size: clamp(24px, 5vw, 30px); } }
    .h-style08 span:before, .h-style08 span:after {
      position: absolute;
      top: 50%;
      content: '';
      width: 1.5em;
      height: 1px;
      background-color: #e95513; }
    .h-style08 span:before {
      left: 100%; }
    .h-style08 span:after {
      right: 100%; }

/*== 線がループして伸縮 */
.btn-style01 {
  text-align: right;
  padding-right: 0.5em; }
  .btn-style01 a {
    font-size: clamp(14px, 2.917vw, 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); } }
    .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(../images/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. コンテンツ
------------------------------------*/
#page .entry-content {
  max-width: 92%;
  margin-left: auto;
  margin-right: auto; }

.conts__width-m {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto; }
  @media screen and (max-width: 1000px) {
    .conts__width-m {
      max-width: 92%; } }

.conts__width-s {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto; }
  @media screen and (max-width: 1000px) {
    .conts__width-s {
      max-width: 92%; } }

.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%; }

.full-width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw; }

.conts__titlebg {
  padding-top: clamp(50px, 6.51vw, 60px);
  padding-bottom: 1px;
  background: url(../images/bg-title01.png) no-repeat left top, url(../images/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;
  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: 500px;
    margin: 0 auto; }
  .footer-nav a {
    color: #000; }

.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: 1000px;
  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%; }
