@charset "UTF-8";
/*ホバーで下線のボタン*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;700&display=swap");
@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon.eot?e4vfqk");
  src: url("../fonts/icomoon.eot?e4vfqk#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?e4vfqk") format("truetype"), url("../fonts/icomoon.woff?e4vfqk") format("woff"), url("../fonts/icomoon.svg?e4vfqk#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-arrow:before {
  content: "\e900";
}

.icon-slash:before {
  content: "\e901";
}

.icon-fb:before {
  content: "\e902";
}

.icon-ig:before {
  content: "\e903";
}

.icon-tw:before {
  content: "\e904";
}

.icon-book:before {
  content: "\e905";
}

.icon-mail:before {
  content: "\e906";
}

.icon-phone:before {
  content: "\e907";
}

.icon-close:before {
  content: "\e908";
}

.icon-down:before {
  content: "\e909";
}

.icon-camera:before {
  content: "\e90a";
}

.icon-pen:before {
  content: "\e90b";
}

.icon-star:before {
  content: "\e90c";
}

/* ==================================================
	header
================================================== */
.header {
  position: relative;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  background: #fff;
  color: #4d4d4d;
  width: 100%;
  height: 80px;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
}
.header-left {
  display: flex;
  align-items: center;
}
.header-logo {
  width: 380px;         /* 親要素の幅 */
  height: 60px;         /* 親要素の高さを60pxに設定 */
  margin: auto 0;       /* 上下中央揃え */
  z-index: 90;          /* 重なり順の指定 */
  padding-left: 5px;    /* 左側の余白 */
  display: flex;        /* フレックスボックスでコンテンツを整列 */
  align-items: center;  /* 縦方向に中央揃え */
}

.header-img {
  height: 100%;         /* 親要素の高さに合わせてリサイズ */
  width: auto;          /* 画像の縦横比を維持 */
}


.header-txt {
  font-size: 1.2rem;
  margin-left: 10px;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 639px) {
  .header {
    height: 60px;
  }
  .header-logo {
    width: 280px;
    height: 60px;
    padding-left: 10px;
  }
}
/* ========== end △ */
/* ▽ TAB-SP layout ========== */
@media only screen and (max-width: 1023px) {
  .hamburger {
    display: block;
    position: absolute;
    z-index: 999;
    right: 0;
    top: 0;
    width: 80px;
    height: 80px;
    background: #0982e9;
    cursor: pointer;
    text-align: center;
  }
  .hamburger span {
    display: block;
    position: absolute;
    width: 40px;
    height: 2px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: #fff;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .hamburger span:nth-child(1) {
    top: 30px;
  }
  .hamburger span:nth-child(2) {
    top: 40px;
  }
  .hamburger span:nth-child(3) {
    top: 50px;
  }
  .hamburger-on span:nth-child(1) {
    top: 40px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .hamburger-on span:nth-child(2),
  .hamburger-on span:nth-child(3) {
    top: 40px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 639px) {
  .hamburger {
    width: 60px;
    height: 60px;
  }
  .hamburger span {
    width: 30px;
  }
  .hamburger span:nth-child(1) {
    top: 20px;
  }
  .hamburger span:nth-child(2) {
    top: 30px;
  }
  .hamburger span:nth-child(3) {
    top: 40px;
  }
  .hamburger-on span:nth-child(1) {
    top: 30px;
  }
  .hamburger-on span:nth-child(2),
  .hamburger-on span:nth-child(3) {
    top: 30px;
  }
}
/* ========== end △ */
/* ==================================================
	gnav
================================================== */
/* ▽ PC layout ========== */
@media print, screen and (min-width: 1024px) {
  .gnav {
    margin-left: auto;
  }

  .gnav-inner {
    display: flex;
    gap: 20px;
  }

  .gnav-menu {
    display: flex;
    align-items: center;
  }

  .gnav-item {
    font-weight: bold;
  }
  .gnav-item a {
    position: relative;
    display: inline-block;
    color: #4d4d4d;
    margin: 0 20px;
  }
  .gnav-item a:after {
    position: absolute;
    bottom: -4px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #4d4d4d;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .3s;
  }
  .gnav-item a:hover::after {
    transform: scale(1, 1);
  }

  .gnav-contact {
    background: #0982e9;
    color: #fff;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
  }
  .gnav-contact:hover {
    background: #0982e9;
  }
}
/* ========== end △ */
/* ▽ TAB-SP layout ========== */
@media only screen and (max-width: 1023px) {
  .gnav {
    position: fixed;
    z-index: 100;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.5s ease;
  }
  .gnav-on {
    right: 0;
    overflow-y: scroll;
  }
  .gnav-inner {
    transition: all 0.6s;
    width: 90%;
    margin: 100px auto;
  }

  .gnav-item {
    text-align: center;
  }
  .gnav-item a {
    display: block;
    padding: 10px;
    font-size: 2.0rem;
  }

  .gnav-contact {
    background: #0982e9;
    color: #fff;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    font-size: 2.0rem;
    margin-top: 50px;
  }
  .gnav-contact:hover {
    background: #0982e9;
  }

  .overlay {
    transition: all 0.5s ease;
    right: -100%;
  }
  .overlay-on {
    width: 50%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 50%;
    background: rgba(77, 77, 77, 0.5);
    opacity: 0.5;
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 639px) {
  .gnav {
    width: 70%;
  }

  .gnav-item a {
    font-size: 1.6rem;
  }

  .gnav-contact {
    height: 60px;
    font-size: 1.6rem;
  }

  .overlay-on {
    width: 30%;
    right: 70%;
  }
}
/* ========== end △ */
.body-fixed {
  position: fixed;
  width: 100%;
}

/* ==================================================
footer
================================================== */
.foot {
  background: #4d4d4d;
  color: #fff;
  padding: 100px 0;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 639px) {
  .foot {
    font-size: 1.2rem;
  }
}
/* ========== end △ */
.foot-logo {
  width: 350px;
  display: block;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 639px) {
  .foot-logo {
    width: 350px;
  }
}
/* ========== end △ */
/* ==================================================
	basic layout
================================================== */
#wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  color: #4d4d4d;
  font-size: 1.6rem;
  font-family: 'Noto Serif JP', serif, "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 400;
  overflow: hidden;
}
/* ▽ PC layout ========== */
@media print, screen and (min-width: 1024px) {
  #wrapper {
    min-width: 1000px;
    max-width: 1920px;
  }
}
/* ========== end △ */
/* ▽ TAB-SP layout ========== */
@media only screen and (max-width: 1023px) {
  #wrapper {
    font-size: 1.4rem;
  }
}
/* ========== end △ */
input[type="text"], input[type="submit"], input[type="tel"], input[type="email"], textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  border-radius: 0;
  margin: 0;
  outline: none;
  padding: 0;
}

/* ==================================================
	共通 追加
================================================== */
img {
  width: 100%;
  vertical-align: bottom;
}

* {
  box-sizing: border-box;
}

a {
  transition: all 0.3s ease;
}

.btn_arrow {
  width: 250px;
  height: 60px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  border-radius: 10px;
  border: 1px solid #000000;
  color: #000000;
  position: relative;
  transition: ease .2s;
  overflow: hidden;
}
.btn_arrow:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #000000;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.btn_arrow * {
  z-index: 10;
}
.btn_arrow .icon-arrow {
  font-size: 3.0rem;
  position: relative;
  padding-right: 10px;
}
.btn_arrow .icon-arrow:after {
  content: "";
  position: absolute;
  top: 3px;
  right: 0;
  width: 23px;
  height: 23px;
  border: 1px solid #000000;
  border-radius: 50%;
  display: block;
}
.btn_arrow:hover {
  color: #fff;
}
.btn_arrow:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.btn_arrow:hover .icon-arrow:after {
  content: none;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 639px) {
  .btn_arrow {
    height: 50px;
    border-radius: 7px;
  }
}
/* ========== end △ */
.btn_arrow_jp {
  width: 475px;
  height: 100px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  border-radius: 10px;
  border: 1px solid #000000;
  color: #000000;
  position: relative;
  transition: ease .2s;
  overflow: hidden;
}
.btn_arrow_jp:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #000000;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.btn_arrow_jp * {
  z-index: 10;
}
.btn_arrow_jp .icon-arrow {
  font-size: 3.0rem;
  position: relative;
  padding-right: 10px;
}
.btn_arrow_jp .icon-arrow:after {
  content: "";
  position: absolute;
  top: 3px;
  right: 0;
  width: 23px;
  height: 23px;
  border: 1px solid #000000;
  border-radius: 50%;
  display: block;
}
.btn_arrow_jp:hover {
  color: #fff;
}
.btn_arrow_jp:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.btn_arrow_jp:hover .icon-arrow:after {
  content: none;
}
.btn_arrow_jp .sans_b {
  font-size: 2.0rem;
}
.btn_arrow_jp span {
  font-weight: normal;
}
/* ▽ TAB-SP layout ========== */
@media only screen and (max-width: 1023px) {
  .btn_arrow_jp {
    height: 80px;
  }
  .btn_arrow_jp .sans_b {
    font-size: 1.6rem;
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 639px) {
  .btn_arrow_jp {
    height: 70px;
    border-radius: 7px;
  }
  .btn_arrow_jp .sans_b {
    font-size: 1.4rem;
  }
  .btn_arrow_jp span {
    font-size: 1.0rem;
  }
}
/* ========== end △ */
.icon-arrow {
  font-size: 3.0rem;
}

/* ==================================================
	フォント
================================================== */
.serif {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
}

.serif_b {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
}

.sans {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
}

.sans_b {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
}

.cor {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
}

.cor_b {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

.bold {
  font-weight: bold;
}

.normal {
  font-weight: normal;
}

.line10 {
  line-height: 1.0;
}

.line14 {
  line-height: 1.4;
}

.line20 {
  line-height: 2.0;
}

.font50 {
  font-size: 5.0rem;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 639px) {
  .font50 {
    font-size: 3.0rem;
  }
}
/* ========== end △ */
.font40 {
  font-size: 4.0rem;
}
/* ▽ TAB-SP layout ========== */
@media only screen and (max-width: 1023px) {
  .font40 {
    font-size: 3.0rem;
  }
}
/* ========== end △ */
.font30 {
  font-size: 3.0rem;
}
/* ▽ TAB-SP layout ========== */
@media only screen and (max-width: 1023px) {
  .font30 {
    font-size: 2.2rem;
  }
}
/* ========== end △ */
.font24 {
  font-size: 2.4rem;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 639px) {
  .font24 {
    font-size: 2.0rem;
  }
}
/* ========== end △ */
.font20 {
  font-size: 2.0rem;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 639px) {
  .font20 {
    font-size: 1.4rem;
  }
}
/* ========== end △ */
.font12 {
  font-size: 1.2rem;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 639px) {
  .font12 {
    font-size: 1.0rem;
  }
}
/* ========== end △ */
/* ==================================================
	ページ共通
================================================== */
.ttl-en {
  color: #997c7a;
  font-size: 2.4rem;
  line-height: 1.0;
}
/* ▽ TAB-SP layout ========== */
@media only screen and (max-width: 1023px) {
  .ttl-en {
    font-size: 2.0rem;
  }
}
/* ========== end △ */
.ttl-ja {
  font-size: 4.0rem;
  margin-top: 10px;
  line-height: 1.2;
  font-weight: normal;
}
@media only screen and (min-width: 1024px) and (max-width: 1200px) {
  .ttl-ja {
    font-size: 3.5rem;
  }
}
/* ▽ TAB-SP layout ========== */
@media only screen and (max-width: 1023px) {
  .ttl-ja {
    font-size: 3.0rem;
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 639px) {
  .ttl-ja {
    font-size: 2.5rem;
  }
}
/* ========== end △ */
.fitimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.basetxt {
  color: gray;
  line-height: 2.0;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
}

/* サイズ
-------------------------------------------------- */
.w90 {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.mt20 {
  margin-top: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 639px) {
  .mt30 {
    margin-top: 20px !important;
  }
}
/* ========== end △ */
.mt50 {
  margin-top: 50px !important;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 639px) {
  .mt50 {
    margin-top: 30px !important;
    padding-left: 3%;
    padding-right: 3%;
  }
}
/* ========== end △ */
.mt80 {
  margin-top: 80px !important;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 639px) {
  .mt80 {
    margin-top: 50px !important;
  }
}
/* ========== end △ */
.mt100 {
  margin-top: 100px !important;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 639px) {
  .mt100 {
    margin-top: 70px !important;
  }
}
/* ========== end △ */
.mt150 {
  margin-top: 150px !important;
}

.p80 {
  padding: 80px 0;
}
/* ▽ TAB layout ========== */
@media only screen and (min-width: 640px) and (max-width: 1023px) {
  .p80 {
    padding: 60px 0;
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 639px) {
  .p80 {
    padding: 40px 0;
  }
}
/* ========== end △ */
.w1000 {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.cont_wrap {
  padding: 100px 0;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 639px) {
  .cont_wrap {
    padding: 40px 0;
  }
}
/* ========== end △ */
/* カラー
-------------------------------------------------- */
.gra_left {
  background: linear-gradient(90deg, #0982e9 0%, #0982e9 40%, #fff 40%, #fff 100%);
}
/* ▽ TAB-SP layout ========== */
@media only screen and (max-width: 1023px) {
  .gra_left {
    background: linear-gradient(180deg, #0982e9 0, #0982e9 200px, #fff 200px);
  }
}
/* ========== end △ */
.bg_lightgray {
  background: #f3f3f3;
}

.gray {
  color: #959595;
}

.red {
  color: #e35959;
}

.pink {
  color: #ff8585;
}

.blue {
  color: #67bcff;
}

.white {
  color: #fff;
}

/* レイアウト
-------------------------------------------------- */
.jus_end {
  display: flex;
  justify-content: flex-end;
}

.jus_center {
  display: flex;
  justify-content: center;
}

.jus_between {
  display: flex;
  justify-content: space-between;
}

.align_center {
  display: flex;
  align-items: center;
}

.align_base {
  display: flex;
  align-items: baseline;
}

.flex {
  display: flex;
}

.radius {
  border-radius: 10px;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 639px) {
  .radius {
    border-radius: 7px;
  }
}
/* ========== end △ */
.indent_wrap p {
  padding-left: 1em;
  text-indent: -1em;
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
}

.scroll {
  display: block;
  padding-top: 100px;
  margin-top: -100px;
}
/* ▽ TAB layout ========== */
@media only screen and (min-width: 640px) and (max-width: 1023px) {
  .scroll {
    padding-top: 80px;
    margin-top: -80px;
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 639px) {
  .scroll {
    padding-top: 30px;
    margin-top: -30px;
  }
}
/* ========== end △ */
.abcenter {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

/* 見出し
-------------------------------------------------- */
h3.midashi {
  display: block;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  background: #234872;
  color: #fff;
  font-size: 2.0rem;
}
h3.midashi:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 5px;
  background: #67bcff;
  margin-right: 20px;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 639px) {
  h3.midashi {
    font-size: 1.4rem;
    padding: 10px;
  }
  h3.midashi:before {
    width: 15px;
    height: 3px;
    margin-right: 10px;
  }
}
/* ========== end △ */
h4.blue2 {
  font-size: 3.0rem;
  color: #21aced;
  padding-bottom: 20px;
  border-bottom: 1px solid;
  display: flex;
  align-items: end;
  line-height: 1.2;
}
h4.blue2 span {
  display: inline-block;
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 2.0rem;
  background: #21aced;
  color: #fff;
  margin-right: 10px;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 639px) {
  h4.blue2 {
    font-size: 1.6rem;
    padding-bottom: 10px;
    align-items: baseline;
  }
  h4.blue2 span {
    font-size: 1.4rem;
    width: 60px;
    text-align: center;
  }
}
/* ========== end △ */
.arrowbtn a {
  display: flex;
  align-items: center;
  font-weight: bold;
  padding: 10px 0;
}
.arrowbtn a:before {
  content: "▶";
  color: #67bcff;
  font-size: 1.2rem;
  margin-right: 10px;
}
.arrowbtn a:hover {
  opacity: 0.7;
}
.rounded1{
  border-radius: 0 30px 30px 0;
}
.rounded2{
  border-radius: 30px;
}