@charset "UTF-8";
.noto {
  font-family: "Noto Sans JP", "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 500;
}

.lato {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.karla {
  font-family: "Karla", sans-serif;
  font-weight: 800;
  letter-spacing: 0.04em;
}

/* ブラウザ幅でフォントサイズを変える関数
=========================================== */
/* remのclamp
=========================================== */
html {
  font-size: 62.5%;
}

p, li, dd, dt, span, a, th, td {
  font-size: clamp(1.4rem, 2.0833333333vw, 1.8rem);
  line-height: 1.8;
}
p.mb, li.mb, dd.mb, dt.mb, span.mb, a.mb, th.mb, td.mb {
  margin-bottom: 2em;
}

.ttl-96 {
  font-size: clamp(2.4rem, 8.59375vw, 9.6rem);
}

.ttl-80 {
  font-size: clamp(2.2rem, 6.5104166667vw, 8rem);
}

.ttl-50 {
  font-size: clamp(4rem, 5.7291666667vw, 5rem);
}

.ttl-38 {
  font-size: clamp(2.2rem, 3.90625vw, 3.8rem);
}

.ttl-36 {
  font-size: clamp(2.1rem, 4.296875vw, 3.6rem);
}

.ttl-30 {
  font-size: clamp(2rem, 3.6458333333vw, 3rem);
}

.ttl-28 {
  font-size: clamp(1.9rem, 2.8645833333vw, 2.8rem);
}

.ttl-27 {
  font-size: clamp(1.7rem, 2.734375vw, 2.7rem);
}

.text-24 {
  font-size: clamp(1.7rem, 2.8645833333vw, 2.4rem);
}

.text-20 {
  font-size: clamp(1.6rem, 2.4739583333vw, 2rem);
}

.text-18 {
  font-size: clamp(1.5rem, 2.34375vw, 1.8rem);
}

.text-sm {
  font-size: clamp(1.1rem, 1.8229166667vw, 1.4rem);
}

.mv_description {
  font-size: clamp(1.4rem, 2.34375vw, 2.4rem);
}

h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

/* ページ設定
=========================================== */
* {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  line-height: unset;
}

html,
body {
  position: relative;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #231815;
  font-family: "Noto Sans JP", "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  -webkit-text-size-adjust: 100%;
  font-weight: 500;
}

html[lang=en] body {
  font-family: "Lato", "Karla", sans-serif;
  font-weight: 400;
}

html[lang=ko] body {
  font-family: "Noto Sans KR", "Malgun Gothic", sans-serif;
  font-weight: 400;
}

html[lang=zh] body {
  font-family: "Noto Sans SC", "Microsoft YaHei", "PingFang SC", sans-serif;
  font-weight: 400;
}

body {
  min-width: 960px;
}
@media (max-width: 767px) {
  body {
    min-width: initial;
  }
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.t_right {
  text-align: right;
}

.t_center {
  text-align: center;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .t_center {
    text-align: left;
  }
}

.t_white {
  color: #fff;
}

/* container
=========================================== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
}
@media (min-width: 768px) and (max-width: 1440px) {
  .container {
    width: 90%;
  }
}
@media (max-width: 767px) {
  .container {
    width: 90%;
    max-width: none;
  }
}

.inner {
  width: 95%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .inner {
    width: 90%;
  }
}

/* device-only
=========================================== */
.pc-only1 {
  display: block;
}
@media (max-width: 767px) {
  .pc-only1 {
    display: none;
  }
}

.sp-only1 {
  display: none;
}
@media (max-width: 767px) {
  .sp-only1 {
    display: block;
  }
}

.pc-only2 {
  display: block;
}
@media (max-width: 520px) {
  .pc-only2 {
    display: none;
  }
}

.sp-only2 {
  display: none;
}
@media (max-width: 520px) {
  .sp-only2 {
    display: block;
  }
}

.pc-only3 {
  display: block;
}
@media (max-width: 960px) {
  .pc-only3 {
    display: none;
  }
}

.sp-only3 {
  display: none;
}
@media (max-width: 960px) {
  .sp-only3 {
    display: block;
  }
}

/* iOS
=========================================== */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]:-webkit-search-decoration,
input[type=button]:-webkit-search-decoration {
  display: none;
}

input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

/* clearfix
=========================================== */
.clearfix:before,
.clearfix:after {
  content: "";
  display: block;
  overflow: hidden;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

.left {
  float: left;
}

.right {
  float: right;
}

/* link
=========================================== */
a {
  display: inline-block;
  color: #231815;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  text-decoration: none;
}
a:hover, a:link, a:active {
  text-decoration: none;
}
@media (any-hover: hover) {
  a:hover {
    opacity: 0.8;
  }
}

a.link {
  color: #231815;
  display: inline-block;
  text-decoration: none;
  text-underline-offset: 4px;
  cursor: pointer;
}
a.link:after {
  content: "";
  display: inline-block;
  width: 35px;
  height: 5px;
  background: url(../img/common/arrow_black.svg) no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-left: 10px;
}
@media (any-hover: hover) {
  a.link:hover {
    opacity: 0.8;
  }
}

a.link_underline {
  text-decoration: underline;
  color: #009FE8;
  font-weight: 600;
}

a.link_btm {
  color: #231815;
  display: inline-block;
  text-decoration: none;
  text-underline-offset: 4px;
  cursor: pointer;
}
a.link_btm:after {
  content: "";
  display: inline-block;
  display: inline-block;
  vertical-align: middle;
  color: #176082;
  line-height: 1;
  width: 10px;
  height: 10px;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: translateY(-25%) rotate(135deg);
          transform: translateY(-25%) rotate(135deg);
  margin-left: 10px;
}
@media (any-hover: hover) {
  a.link_btm:hover {
    opacity: 0.8;
  }
}

/* btn
=========================================== */
a.btn {
  color: #fff;
  display: block;
  padding: 10px 0;
  position: relative;
  background: #231815;
  text-decoration: none;
  text-align: center;
  margin: 60px auto 0;
  max-width: 300px;
}
@media (max-width: 767px) {
  a.btn {
    margin-top: 40px;
  }
}
a.btn:after {
  content: "";
  display: inline-block;
  width: 35px;
  height: 5px;
  background: url(../img/common/arrow.svg) no-repeat;
  background-size: contain;
  position: absolute;
  right: 10px;
  top: 45%;
}
@media (any-hover: hover) {
  a.btn:hover {
    opacity: 0.8;
  }
}
a.btn.white {
  color: #176082;
  background: #fff;
}
a.btn.white:after {
  background: url(../img/common/arrow_main.svg) no-repeat;
}

.btn_flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}
@media (max-width: 767px) {
  .btn_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.btn_flex a.btn {
  width: 300px;
  margin: 0;
}
@media (max-width: 767px) {
  .btn_flex a.btn {
    width: 100%;
    max-width: 500px;
  }
}

/* flexbox
=========================================== */
.flex {
  display: -webkit-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.flex.center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex.flex-between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media (max-width: 767px) {
  .flex.flex-between {
    gap: 30px;
  }
}
.flex.flex-between .card {
  background: #E9FFFF;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 50px 40px;
}
@media (max-width: 1200px) {
  .flex.flex-between .card {
    padding: 25px 10px;
  }
}
@media (max-width: 767px) {
  .flex.flex-between .card {
    padding: 25px 15px;
  }
}
.flex.flex-between .card figure {
  margin-bottom: 30px;
}
.flex.flex-between .card figure img {
  text-align: center;
  margin-inline: auto;
}
.flex.flex-between.card2 .card {
  width: 48.5%;
}
@media (max-width: 767px) {
  .flex.flex-between.card2 .card {
    width: 100%;
  }
}
.flex.flex-between.card3 .card {
  width: 31.4%;
}
@media (max-width: 767px) {
  .flex.flex-between.card3 .card {
    width: 100%;
  }
}

.flex.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .flex.reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media (max-width: 767px) {
  .spFlexRow {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
}
.flex-set {
  display: -webkit-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
}

/* section
=========================================== */
section:not(#mv) {
  margin-bottom: 120px;
}
@media (max-width: 767px) {
  section:not(#mv) {
    margin-bottom: 60px;
  }
}

section#mv {
  padding-top: 120px;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  section#mv {
    padding-top: 0;
    margin-bottom: 30px;
  }
}

section {
  position: relative;
}
section .left_en {
  position: absolute;
  top: 0;
  left: 5px;
}
@media (max-width: 1600px) {
  section .left_en {
    display: none;
  }
}
section .left_en .lato {
  text-orientation: mixed;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: rgba(0, 159, 232, 0.3);
  line-height: 1;
  white-space: nowrap;
}

/* header
=========================================== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  -webkit-transition: top 0.3s ease;
  transition: top 0.3s ease;
}
@media (max-width: 1250px) {
  #header {
    background: rgb(255, 255, 255);
  }
}

#header.upMove {
  top: -120px; /* ヘッダーの高さ分マイナスにして隠す */
}

#header.downMove {
  top: 0; /* 下からスッと復活 */
}

#header .header_inner {
  width: 95%;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
}
#header .header_inner .header_logo {
  width: 350px;
  height: 78px;
  position: relative;
}
@media (max-width: 1800px) {
  #header .header_inner .header_logo {
    width: 280px;
    height: 72px;
  }
}
@media (max-width: 767px) {
  #header .header_inner .header_logo {
    width: 180px;
    height: 45px;
  }
}
#header .header_inner .header_main {
  width: calc(100% - 350px - 40px);
  max-width: 1200px;
}
#header .header_inner .header_main .header_nav {
  height: 100%;
}
@media (max-width: 1250px) {
  #header .header_inner .header_main .header_nav {
    position: absolute;
    width: 35%;
    height: 100vh;
    left: auto;
    right: -140%;
    bottom: 0;
    top: 0;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
    z-index: 11;
    overflow: scroll;
  }
  #header .header_inner .header_main .header_nav.active {
    right: 0;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
    background: #009FE8;
  }
}
@media (max-width: 993px) {
  #header .header_inner .header_main .header_nav {
    width: 45%;
  }
}
@media (max-width: 767px) {
  #header .header_inner .header_main .header_nav {
    width: 100%;
  }
}
#header .header_inner .header_main .header_nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 1251px) {
  #header .header_inner .header_main .header_nav ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (min-width: 1251px) and (max-width: 1340px) {
  #header .header_inner .header_main .header_nav ul li a {
    font-size: 14px;
  }
}
@media (min-width: 1251px) {
  #header .header_inner .header_main .header_nav ul li.menucontact a {
    border: 1px solid #231815;
    padding: 2px 15px;
    display: block;
  }
  #header .header_inner .header_main .header_nav ul li.menucontact a:hover {
    background: #231815;
    color: #fff;
  }
  #header .header_inner .header_main .header_nav ul li.spmenu {
    display: none;
  }
}
@media (max-width: 1250px) {
  #header .header_inner .header_main .header_nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 100px 0;
    width: 95%;
    margin: 0 auto;
  }
  #header .header_inner .header_main .header_nav ul li {
    border-bottom: 1px solid #fff;
  }
  #header .header_inner .header_main .header_nav ul li a {
    color: #fff;
    display: block;
    padding: 10px 0;
    position: relative;
  }
  #header .header_inner .header_main .header_nav ul li a:after {
    content: "";
    -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
            clip-path: polygon(100% 50%, 0 0, 0 100%);
    width: 6px;
    height: 10px;
    background: #fff;
    display: inline-block;
    position: absolute;
    top: 20px;
    right: 0;
  }
}
#header.solid-bg {
  background: rgb(255, 255, 255);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
@media (min-width: 1251px) {
  #header.solid-bg .header_inner .header_main .header_nav ul li a {
    color: #231815;
  }
  #header.solid-bg .header_inner .header_main .header_nav ul li.menucontact a {
    border: 1px solid #231815;
  }
  #header.solid-bg .header_inner .header_main .header_nav ul li.menucontact a:hover {
    background: #231815;
    color: #fff;
  }
  #header.solid-bg .header_inner .header_main .header_nav ul li.spmenu {
    display: none;
  }
}
#header .overlay {
  bottom: 0;
  cursor: pointer;
  height: 100%;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  visibility: hidden;
  width: 100%;
  z-index: 10;
}
#header .overlay.active {
  visibility: visible;
}
#header .hambuger {
  display: none;
}
@media (max-width: 1250px) {
  #header .hambuger {
    display: block !important;
    position: relative;
    width: 30px;
    height: 20px;
    z-index: 999;
    cursor: pointer;
  }
  #header .hambuger span {
    position: absolute;
    background: #000;
    width: 100%;
    height: 3px;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
  }
  #header .hambuger span:first-child {
    top: 0;
  }
  #header .hambuger span:nth-child(2) {
    top: 9px;
  }
  #header .hambuger span:last-child {
    top: 18px;
  }
  #header .hambuger.active span {
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
  }
  #header .hambuger.active span:first-child {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    top: 8px;
    background: #fff;
  }
  #header .hambuger.active span:nth-child(2),
  #header .hambuger.active span:last-child {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    top: 8px;
    background: #fff;
  }
}
#header .close.dropmenu::after {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ffffff)) center/10px 2px no-repeat;
  background: -webkit-linear-gradient(#ffffff 0 0) center/10px 2px no-repeat;
  background: linear-gradient(#ffffff 0 0) center/10px 2px no-repeat;
}

@media (min-width: 1251px) {
  #toppage #header .header_inner .header_main .header_nav ul li a {
    color: #fff;
  }
  #toppage #header .header_inner .header_main .header_nav ul li.menucontact a {
    border: 1px solid #fff;
  }
  #toppage #header .header_inner .header_main .header_nav ul li.menucontact a:hover {
    background: #231815;
    border: 1px solid #231815;
    color: #fff;
  }
}
@media (min-width: 1251px) {
  #toppage #header.solid-bg.show .header_nav ul li a {
    color: #231815;
  }
  #toppage #header.solid-bg.show .header_nav ul li.menucontact a {
    border: 1px solid #231815;
  }
  #toppage #header.solid-bg.show .header_nav ul li.menucontact a:hover {
    background: #231815;
    color: #fff;
  }
}

/* pagettl
=========================================== */
.hgroup1 {
  text-align: left;
}
.hgroup1 .karla {
  line-height: 1;
  color: #231815;
  padding-top: 2.5em;
  margin-bottom: 0.5em;
  text-transform: uppercase;
}
.hgroup1 .ttl {
  margin-bottom: 1.5em;
}
@media (max-width: 767px) {
  .hgroup1 .ttl {
    margin-bottom: 1em;
  }
}

/* breadcrumb
=========================================== */
.breadcrumb {
  text-align: right;
  margin-bottom: 2em;
}
.breadcrumb > div {
  display: inline;
  list-style: none;
}
.breadcrumb > div:after {
  content: ">";
  padding: 0 0.2em;
  color: rgba(35, 24, 21, 0.5);
}
.breadcrumb > div:last-child:after {
  content: "";
}
.breadcrumb > div a {
  color: rgba(35, 24, 21, 0.5);
}
@media (any-hover: hover) {
  .breadcrumb > div a:hover {
    color: rgba(35, 24, 21, 0.5);
  }
}
.breadcrumb > div span {
  font-size: 14px;
  color: rgba(35, 24, 21, 0.5);
}
@media (max-width: 767px) {
  .breadcrumb > div span {
    font-size: 12px;
  }
}

.pagettl-image {
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .pagettl-image {
    margin-bottom: 50px;
  }
}

/* hgroup
=========================================== */
.hgroup2 .lato {
  line-height: 1;
  color: #176082;
  margin-bottom: 0.5em;
}
.hgroup2 .ttl {
  margin-bottom: 1.5em;
}
@media (max-width: 767px) {
  .hgroup2 .ttl {
    margin-bottom: 1em;
  }
}
.hgroup2.center {
  text-align: center;
  margin-inline: auto;
}
.hgroup2.white .ttl, .hgroup2.white .lato {
  color: #fff;
}

.hgroup3 .lato {
  line-height: 1;
  color: #176082;
  margin-bottom: 0.5em;
}
.hgroup3 .ttl {
  margin-bottom: 1em;
}
.hgroup3.center {
  text-align: center;
  margin-inline: auto;
}
.hgroup3.white .ttl, .hgroup3.white .lato {
  color: #fff;
}

.hgroupbg {
  margin-bottom: 1em;
  background: #176082;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 12px;
  padding: 10px 30px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 15px 0;
  position: relative;
}
@media (max-width: 767px) {
  .hgroupbg {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 5px;
    padding: 10px 0 10px 10px;
  }
}
.hgroupbg .lato {
  line-height: 1;
  color: #fff;
  position: relative;
  padding-right: 60px;
  padding-left: 1em;
}
@media (max-width: 767px) {
  .hgroupbg .lato {
    padding-right: 0;
  }
}
.hgroupbg .lato:before {
  content: "";
  position: absolute;
  top: 48%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #fff;
  width: 6px;
  height: 6px;
  border-radius: 6px;
}
.hgroupbg .lato:after {
  content: "";
  position: absolute;
  top: 48%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #fff;
  width: 50px;
  height: 1px;
}
@media (max-width: 767px) {
  .hgroupbg .lato:after {
    display: none;
  }
}
.hgroupbg .ttl {
  color: #fff;
}

.hgroupbg2 {
  margin-bottom: 1em;
  background: #176082;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 12px;
  padding: 10px 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 15px 0;
  position: relative;
}
@media (max-width: 767px) {
  .hgroupbg2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 5px;
    padding: 10px 0 10px 10px;
  }
}
.hgroupbg2 .ttl {
  color: #fff;
  position: relative;
  padding-left: 1em;
}
.hgroupbg2 .ttl:before {
  content: "";
  position: absolute;
  top: 0.8em;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #fff;
  width: 6px;
  height: 6px;
  border-radius: 6px;
}

/* footer
=========================================== */
#footer {
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  #footer {
    padding-bottom: 90px;
  }
}
#footer .container {
  text-align: center;
  margin-inline: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
@media (max-width: 767px) {
  #footer .container {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  #footer .container .footer_nav {
    width: 100%;
  }
}
#footer .container .footer_nav .flex {
  gap: 40px;
}
@media (max-width: 767px) {
  #footer .container .footer_nav .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 95%;
    margin: 0 auto;
    gap: 0;
  }
  #footer .container .footer_nav .flex li {
    border-bottom: 1px solid #231815;
    width: 100%;
  }
  #footer .container .footer_nav .flex li a {
    color: #231815;
    display: block;
    padding: 10px 0;
    position: relative;
    width: 100%;
    text-align: left;
  }
  #footer .container .footer_nav .flex li a:after {
    content: "";
    -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
            clip-path: polygon(100% 50%, 0 0, 0 100%);
    width: 6px;
    height: 10px;
    background: #231815;
    display: inline-block;
    position: absolute;
    top: 20px;
    right: 0;
  }
}
#footer .container .footer_logo {
  width: 300px;
}
@media (max-width: 767px) {
  #footer .container .footer_logo {
    width: 200px;
  }
}

/* cta
=========================================== */
section#cta {
  background: url(../img/common/bg_contact.jpg) no-repeat center center;
  background-size: cover;
  padding: 100px 0;
}
@media (max-width: 767px) {
  section#cta {
    background: url(../img/common/bg_contact.jpg) no-repeat center center;
    background-size: cover;
    padding: 60px 0 100px;
  }
}
section#cta p {
  color: #fff;
}
section#cta .cta_ttl {
  width: 50%;
}
@media (max-width: 767px) {
  section#cta .cta_ttl {
    width: 100%;
  }
}
section#cta .cta_ttl .hgroup2 .ttl {
  margin-bottom: 30px;
}
section#cta .cta_set {
  width: 50%;
  gap: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  section#cta .cta_set {
    width: 100%;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
section#cta .cta_set .cta_tel .lato {
  color: #fff;
}
@media (min-width: 768px) {
  section#cta .cta_set .cta_tel .lato {
    pointer-events: none;
  }
}
section#cta .cta_set .tel_time {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
section#cta .cta_set .tel_time dt {
  border: 1px solid #fff;
  color: #fff;
  font-weight: 700;
  padding: 1px 16px;
}
section#cta .cta_set .tel_time dd {
  color: #fff;
  font-weight: 500;
  padding: 1px 16px;
}
section#cta .cta_set a.cta_btn {
  color: #176082;
  display: block;
  padding: 25px 0;
  position: relative;
  background: #fff;
  text-decoration: none;
  text-align: center;
  max-width: 350px;
  width: 100%;
  font-weight: 600;
}
@media (max-width: 767px) {
  section#cta .cta_set a.cta_btn {
    max-width: 100%;
  }
}
section#cta .cta_set a.cta_btn:before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 25px;
  background: url(../img/common/icon_mail.svg) no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-right: 15px;
}
@media (max-width: 767px) {
  section#cta .cta_set a.cta_btn:before {
    width: 30px;
    height: 19px;
  }
}
@media (any-hover: hover) {
  section#cta .cta_set a.cta_btn:hover {
    opacity: 0.8;
  }
}

/* ===============================================
# フッター追尾
=============================================== */
#ftr_info {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 9999;
  display: none;
}
#ftr_info .sp {
  display: none;
  border-top: solid 1px rgba(255, 255, 255, 0.5);
}
@media (max-width: 767px) {
  #ftr_info .sp {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
#ftr_info .sp .btn {
  padding: 6px 0 2px;
  background: #176082;
  width: 50%;
}
#ftr_info .sp .btn.btn_no01 {
  border-right: solid 1px rgba(255, 255, 255, 0.5);
}
#ftr_info .sp .btn.btn_no01 .icon {
  width: 19px;
  height: 32px;
}
#ftr_info .sp .btn.btn_no02 .icon {
  width: 24px;
  height: 20px;
}
#ftr_info .sp .btn a {
  text-decoration: none;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 12px;
  padding: 2px 0;
  font-weight: bold;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#ftr_info .sp .btn a .ttl {
  text-align: center;
  margin-top: 5px;
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
}

/* wide_flex
=========================================== */
.flex.flex-between.wide_flex {
  margin-top: 60px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .flex.flex-between.wide_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 60px;
  }
}
.flex.flex-between.wide_flex figure {
  width: 50%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  height: auto;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .flex.flex-between.wide_flex figure {
    width: 100%;
  }
}
.flex.flex-between.wide_flex .text_wrap {
  width: 50%;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background: #E9FFFF;
  position: relative;
  padding: 4% 4%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 767px) {
  .flex.flex-between.wide_flex .text_wrap {
    width: 100%;
    padding: 0;
    background: none;
  }
}
.flex.flex-between.wide_flex.reverse .text_wrap {
  right: -50px;
}
@media (max-width: 767px) {
  .flex.flex-between.wide_flex.reverse .text_wrap {
    right: 0;
  }
}
.flex.flex-between.wide_flex:not(.reverse) .text_wrap {
  left: -50px;
}
@media (max-width: 767px) {
  .flex.flex-between.wide_flex:not(.reverse) .text_wrap {
    left: 0;
  }
}

/* 404 not found
=========================================== */
#notfound .text_box {
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 540px) {
  #notfound .text_box {
    text-align: left;
  }
}
#notfound .btn_top {
  margin: 0 auto;
}

/* fadein
=========================================== */
.fadein {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.fadein.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.fadein.delay01 {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.fadein.delay02 {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.fadein.delay03 {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.fadein.delay04 {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
.fadein.delay05 {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
.fadein.delay06 {
  -webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}

/* ===== 言語スイッチャー（右下固定・上方向展開） ===== */
.lang-switcher {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 9999;
}

.lang-current {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 16px 24px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  letter-spacing: 0.05em;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  -webkit-transition: background 0.2s, border-color 0.2s;
  transition: background 0.2s, border-color 0.2s;
}

.lang-current:hover {
  background: #f5f5f5;
  border-color: #999;
}

/* 矢印アイコン（上向き） */
.lang-current::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid #666;
  border-bottom: 2px solid #666;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  margin-top: 3px;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.lang-switcher:hover .lang-current::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-top: -2px;
}

/* ドロップダウン（上方向に展開） */
.lang-dropdown {
  display: none;
  position: absolute;
  bottom: 100%;
  right: 0;
  margin: 0 0 0;
  padding: 0;
  list-style: none;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  min-width: 100%;
  overflow: hidden;
}

.lang-switcher:hover .lang-dropdown {
  display: block;
}

.lang-dropdown li {
  margin: 0;
  padding: 0;
}

.lang-dropdown a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 8px 24px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  white-space: nowrap;
}

.lang-dropdown a:hover {
  background: #f0f0f0;
}

.lang-current img,
.lang-dropdown a img {
  width: 20px;
  height: 15px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2px;
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}/*# sourceMappingURL=common.css.map */