@charset "utf-8";
/*------------------------------------------------------------------

  共通箇所

------------------------------------------------------------------*/

/* PC以下、レスポンシブ共用箇所------------------------------- */
/* フォント読み込み */
.en_font {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
}

/* @group CSS変数を定義 */

:root {
  --normal: #333;
  --gray: #aaa;
  --gray-txt: #888;
  --gray-lit: #f2f2f2;
  --pink: #ea6182;
  --blue: #3e63a3;
  --blue-lit: #e9f2fa;
  --yellow: #fcc900;
  --yellow-lit: #fdd94c;
  --sky70: #a5dcf7;
  --sky80: #98d8f6;
  --green: #26b7bc;

  --gothic: "Zen Kaku Gothic New", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HiraKakuProN-W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  --yuGo: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  --en: "Barlow", sans-serif;
  --ff-icon: "Font Awesome 6 Pro";

  --fw-normal: 400;
  --fw-bold: 700;
  --fw-mid: 500;
  --fz-pc: 16px;
  --fz-sp: 14px;

  --min: 1160px;

  --ef-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.05);
}

/* @end */

/* @group 初期設定 */

html {
  color: var(--normal);
  scroll-behavior: smooth;
}

body {
  color: var(--normal);
  font-family: var(--gothic);
  font-size: var(--fz-pc);
  font-weight: var(--fw-mid);
  line-height: 2;
  min-width: calc(var(--min) + 40px);
  -webkit-text-size-adjust: 100%;
  width: 100%;
}

* {
  scroll-margin-top: 100px;
}

ul ol,
ol ul {
  font-size: 100% !important;
}

ul,
ol,
li ul,
li ol {
  list-style: none;
}

sup {
  vertical-align: top;
  font-size: 0.77em;
}

sub {
  vertical-align: baseline;
  font-size: 0.77em;
}

img {
  height: auto;
  line-height: 1;
  max-width: 100%;
  vertical-align: middle;
}
/* Chrome 対策 */
_:lang(x)::-internal-media-controls-overlay-cast-button,
img {
  image-rendering: -webkit-optimize-contrast;
}

label {
  cursor: pointer;
}

a {
  text-decoration: none;
  color: currentColor;
  transition: all 0.4s;
}

a:hover {
}

a[href^="tel:"] {
  text-decoration: underline;
  cursor: default;
}

a img,
button,
input[type="submit"] {
  transition: all 0.4s;
}

figure {
  line-height: 1;
  margin-bottom: 1em;
}

figcaption {
  font-size: 93%;
  line-height: 1.5;
  margin: 0.5em 0 2em;
  position: relative;
}

strong {
  font-weight: bold;
}

address {
  font-style: normal;
  line-height: 1.9;
}

*,
::before,
::after {
  box-sizing: border-box;
}

.clear {
  clear: both;
}

/* @end */

/*
  フッター
--------------------------*/
.footer {
  position: relative;
  padding: 50px 0 30px;
  background: var(--gray-lit);
}
.footer .inner {
  max-width: 100%;
  margin: 0 auto;
  width: 94%;
  display: flex;
  gap: 30px 10px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.footer .logo {
  margin: 0;
}
.footer .logo img {
  height: 60px;
  width: auto;
}
.footer .logo span {
  border: none;
  color: var(--c-gray);
  font-size: 12px;
  letter-spacing: 0.15em;
}
.footer .main_menu {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 10px 30px;
  font-weight: var(--fw-bold);
  padding-right: 30px;
}
.footer .gnav-btn a {
  font-weight: var(--fw-bold);
}
.logo_banner {
  width: 100%;
}
.foot_cont2 {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 4%;
  border-top: solid 2px #fff;
  border-bottom: solid 2px #fff;
  padding: 20px 0;
}
.foot_cont2 p {
  flex: 1;
  display: flex;
  gap: 0 15px;
  align-items: flex-start;
  font-size: 13px;
  color: #4d4d4d;
  line-height: 1.8;
}
.foot_cont2 p .txt {
  flex: 1;
}
.foot_cont2 p .mark_img {
  width: 103px;
  background: #fff;
  text-align: center;
}
.foot_cont2 p .mark_img img {
  height: 60px;
}
.foot_cont2 p:last-child {
  flex: 0 0 100%;
}
.footer .sub_menu {
  display: flex;
  gap: 0 30px;
}
.footer .sub_menu a {
  text-decoration: underline;
  font-size: 13px;
}
.footer .sub_menu i {
  color: var(--blue);
  margin-left: 5px;
}
.footer small {
  font-size: 13px;
  line-height: 1.8;
  text-align: center;
  color: var(--blue);
  font-family: var(--en);
  font-weight: bold;
}
.slide li {
  padding: 0 10px;
}
.slide li a {
  position: relative;
  display: block;
  border: solid 1px #ddd;
}
.slick-slide {
  height: auto !important;
}
.slide .slide-arrow {
  width: 25px;
  line-height: 25px;
  font-size: 14px;
  left: 0;
  margin-top: -12px;
  border: none;
  background: var(--blue);
  font-weight: bold;
  cursor: pointer;
}
.slide .next-arrow {
  left: auto;
  right: 0;
}
.pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 2;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  background: #333;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagetop:before {
  font-family: var(--ff-icon);
  content: "\f062";
  font-size: 25px;
  font-weight: bold;
}
@media (hover: hover) and (pointer: fine) {
  .pagetop:hover {
    opacity: 0.8;
  }
  .footer .main_menu a:hover {
    color: var(--c-orange);
  }
  .footer .sub_menu a:hover {
    text-decoration: none;
  }
  .slide a:hover {
    opacity: 0.6;
  }
}

/*
  articleヘッダー
--------------------------*/
.article_header {
  overflow: hidden;
  padding: 100px 0;
  background: url(../img/common/bg_blue.jpg) center / cover no-repeat;
}
.article_header .inner {
  position: relative;
  max-width: 1100px;
}
.breadcrumb {
  position: relative;
  padding: 13px 0;
  border-bottom: solid 1px var(--c-lightgray);
}
.breadcrumb ol {
  display: flex;
  gap: 0 10px;
  font-size: 12px;
  align-items: center;
  width: var(--width);
  max-width: 1100px;
  margin: 0 auto;
}
.breadcrumb li:before {
  font-family: var(--ff-icon);
  content: "\f054";
  margin-right: 5px;
  font-weight: bold;
  font-size: 90%;
}
.breadcrumb li:first-child:before {
  content: none;
}
@media (hover: hover) and (pointer: fine) {
  .breadcrumb li a:hover {
    text-decoration: underline;
  }
}
.article_header .ttl {
  font-size: 46px;
  line-height: 1;
  font-weight: var(--fw-bold);
  letter-spacing: 0.05em;
  display: block;
  position: relative;
  color: #fff;
}
.article_header h1 .en_font {
  font-size: 14px;
  display: block;
  color: var(--c-orange);
  padding: 0 0 15px;
}
.content {
  max-width: var(--max-width);
  width: var(--width);
  margin: 0 auto;
  padding: 100px 0;
}

/*
  見出し
--------------------------*/
.ttl_area {
  margin-bottom: 50px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.ttl_area .txt_small {
  font-size: 12px;
  line-height: 1.8;
}
.ttl_area *:last-child {
  margin-bottom: 0;
}
.ttl1 {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
  text-align: center;
  align-items: center;
  font-size: 38px;
  line-height: 1.5;
  letter-spacing: 1.9px;
  font-weight: var(--fw-bold);
}

/*
  ボタン
--------------------------*/
.btn,
.hs-button {
  display: flex;
  gap: 0 10px;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 300px;
  width: 100%;
  height: 60px;
  border-radius: 40px;
  background: var(--yellow);
  border: solid 2px var(--yellow);
  font-size: 18px;
  color: var(--blue);
  font-weight: var(--fw-bold);
  cursor: pointer;
  box-sizing: border-box;
  transition: 0.3s;
  position: relative;
  padding: 0;
}
.snsbtn {
  background: var(--c-black);
  color: #fff;
  border-radius: 50px;
  line-height: 30px;
  padding: 0 15px;
  font-size: 13px;
}
.snsbtn.--x {
  background: #000;
}
.snsbtn.--facebook {
  background: #3b5998;
}
.snsbtn.--line {
  background: #06c755;
}
.snsbtn i {
  margin-right: 5px;
}
.btn_area,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 15px;
  justify-content: center;
  padding-top: 75px;
  width: 100%;
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover,
  .hs-button:hover {
    background: #fff;
  }
  .snsbtn:hover {
    opacity: 0.8;
  }
}

/*
  スライダー
--------------------------*/
.slick-track {
  display: flex;
}
.slick-slide {
  height: auto !important;
}
.slick-dots li button:before {
  content: none !important;
}
.slide-arrow {
  top: 50%;
  margin-top: -30px;
  color: #fff;
  font-size: 20px;
  width: 60px;
  line-height: 60px;
  position: absolute;
  background: var(--c-black);
  padding: 0;
  border-radius: 50%;
  z-index: 1;
  text-align: center;
  left: 7%;
  font-weight: bold;
}
.next-arrow {
  left: auto;
  right: 7%;
}
@media (hover: hover) and (pointer: fine) {
  .slide-arrow:hover {
    opacity: 0.8;
  }
}
.slick-dots li {
  margin: 0 3px;
  width: auto;
  height: auto;
  padding: 0 5px !important;
}
.slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0;
  background: var(--c-gray);
  border-radius: 50%;
}
.slick-dots li.slick-active button {
  background: var(--c-blue);
}

/*
  その他
--------------------------*/
.outer {
  padding: 100px 0;
}
.inner {
  width: var(--width);
  max-width: var(--max-width);
  margin: 0 auto;
}
.inner.width900 {
  max-width: 900px;
}
.inner.width1100 {
  max-width: 1100px;
}
.inner.width1150 {
  max-width: 1150px;
}
.inner.width1200 {
  max-width: 1200px;
}
.inner.width1300 {
  max-width: 1200px;
}
.txt_link {
  color: var(--c-blue);
  text-decoration: underline;
}
.txt_link i {
  margin-left: 5px;
}
@media (hover: hover) and (pointer: fine) {
  .txt_link:hover {
    text-decoration: none;
  }
}
.event_none {
  pointer-events: none;
  opacity: 0.6;
}
.round_wrap {
  background: #fff;
  border-radius: 50px;
  padding: 80px 6%;
}
.youtube {
  box-shadow: var(--ef-shadow);
  border: solid 5px #fff;
}
.youtube .thumb {
  display: block;
  position: relative;
  cursor: pointer;
  aspect-ratio: 16 / 9;
  transition: 0.3s;
}
.youtube .thumb i {
  position: absolute;
  font-size: 70px;
  color: #f00;
  top: 50%;
  margin-top: -36px;
  left: 50%;
  margin-left: -38px;
  line-height: 1;
}
.youtube .thumb img {
  width: 100%;
  object-fit: cover;
}
.youtube iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
}
@media (hover: hover) and (pointer: fine) {
  .youtube .thumb:hover {
    opacity: 0.8;
  }
}

/*---------------------------------

  404ページ

---------------------------------*/
.not_found {
  text-align: center;
  width: 90%;
  margin: 0 auto;
}
.not_found header {
  padding-top: 60px;
}
.not_found .inner {
  max-width: 750px;
}
.not_found h1 {
  color: var(--blue);
  font-size: 60px;
  line-height: 1;
  letter-spacing: 0.02em;
  font-family: var(--en);
}
.not_found h1 span {
  font-size: 235%;
  display: block;
  letter-spacing: 0.03em;
}
.not_found .content {
  padding: 50px 0 100px;
}
.not_found h2 {
  font-size: 26px;
  margin-bottom: 15px;
  line-height: 1.8;
  font-weight: var(--fw-mid);
  color: var(--c-orange);
}
.not_found .txt_basic {
  text-align: left;
}
.not_found .btn_area {
  padding-top: 40px;
}

/* スマホ以上------------------------------- */
@media screen and (min-width: 769px) {
  .sp,
  .pc-none {
    display: none !important;
  }
  .tel {
    pointer-events: none !important;
  }
}

/* スマホサイズ------------------------------- */
@media screen and (max-width: 768px) {
  .pc,
  .sp-none {
    display: none !important;
  }
  html.gnav-open {
    overflow: hidden;
  }
  body {
    font-size: var(--fz-sp);
    min-width: inherit;
  }
  a:hover {
    opacity: 1;
  }
  .txt_small {
    font-size: 10px;
  }
  .txt_mid {
    font-size: 13px;
  }
  .btn_area {
    padding-top: 45px;
  }
  .btn,
  .hs-button {
    max-width: 295px;
    height: 60px;
    font-size: 18px;
  }
  .pagetop {
    bottom: 10px;
    right: 3%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
  }
  .pagetop:before {
    font-size: 20px;
  }
  .slide {
    margin-bottom: 0;
  }
  .pref {
    font-size: 10px;
  }
  .voice_list li {
    flex: 0 0 100%;
  }
  .footer {
    overflow: hidden;
  }
  .footer .inner {
    flex-direction: column;
    align-items: center;
  }
  .footer .main_menu {
    gap: 20px 30px;
    padding: 0;
  }
  .footer .gnav-btn {
    gap: 15px 0;
  }
  .footer .logo img {
    height: auto;
    width: 250px;
  }
  .slide {
    margin-bottom: 0;
    width: 112%;
    margin-left: -6%;
  }
  .slide-arrow {
    margin-top: -22px;
    font-size: 18px;
    width: 45px;
    line-height: 45px;
    left: 15px;
  }
  .next-arrow {
    left: auto;
    right: 15px;
  }
  .slick-dots li {
    padding: 0 5px;
    margin: 0 2px;
  }
  .slick-dots li button {
    width: 8px;
    height: 8px;
  }
  .foot_cont2 {
    flex-direction: column;
  }
  .foot_cont2 p {
    font-size: 11px;
  }
  .tab_menu {
    padding: 0 5%;
  }
  .tab_menu li {
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
  }
  .tab_box {
    padding-top: 20px;
  }
  .not_found h1 {
    font-size: 45px;
  }
  .not_found .content {
    padding-top: 40px;
  }
  .not_found h2 {
    font-size: 20px;
  }
}
