@charset "UTF-8";
/* ------------------------------
	レスポンシブ
------------------------------ */
/* ------------------------------
	フォント
------------------------------ */
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
/* ------------------------------
	カラー
------------------------------ */
/* ----------------------------------------------------------------------------------------------------
*  基本情報
* --------------------------------------------------------------------------------------------------*/
html, body {
  height: 100%;
}

html {
  font-size: 62.5%;
  overflow-y: scroll;
}
@media screen and (max-width: 1300px) {
  html {
    font-size: 0.7692307692vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 62.5%;
  }
}

body {
  -webkit-text-size-adjust: 100%;
}

body, h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, th, td, img, figure, form {
  margin: 0;
  padding: 0;
  border: none;
  list-style-type: none;
}

body, h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, th, td, img, figure,
form, input, textarea, select, button, div {
  font-style: normal;
  font-weight: normal;
  font-family: "Zen Kaku Gothic New", "メイリオ", "Meiryo", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
  text-align: left;
  word-break: break-word;
  line-break: strict;
  line-height: 1;
  color: #3E3A39;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  body, h1, h2, h3, h4, h5, h6, p, address,
  ul, ol, li, dl, dt, dd,
  table, th, td, img, figure,
  form, input, textarea, select, button, div {
    font-size: 1.4rem;
  }
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

table {
  border-spacing: 0;
}

input:not([type=file]), textarea, select, button {
  vertical-align: middle;
  background-color: #fff;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

input:not([type=file]), select, button, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: none;
  border-radius: 0;
  padding: 0;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: none;
}

button, input[type=submit], input[type=button], select, label {
  cursor: pointer;
}

input[type=radio]:checked {
  appearance: none;
}

blockquote {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a,
button,
input[type=submit],
input[type=button] {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

@media screen and (min-width: 769px) {
  a:hover,
  button:hover,
  input[type=submit]:hover,
  input[type=button]:hover {
    opacity: 0.7;
  }
  a[href^="tel:"] {
    display: inline-block;
    pointer-events: none;
  }
}
.wrap {
  max-width: 112rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .wrap {
    width: 92%;
    max-width: initial;
  }
}

.page_wrap {
  background: #F5F5F5 url(../img/common/bg_img01.png) repeat-y center top;
  background-size: 100%;
}

.content {
  overflow: hidden;
}

.en {
  font-family: "Lato", "Zen Kaku Gothic New", "メイリオ", "Meiryo", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
}

@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
/* ----------------------------------------------------------------------------------------------------
*  ヘッダー
* --------------------------------------------------------------------------------------------------*/
.header_wrap {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 7.4rem;
  padding: 0 4rem;
}
@media screen and (max-width: 768px) {
  .header_wrap {
    height: 6.2rem;
    padding: 0 0 0 2%;
  }
}
.header_wrap .logo {
  flex-shrink: 0;
}
.header_wrap .logo a {
  display: block;
}
.header_wrap .logo img {
  width: 6.8rem;
}
@media screen and (max-width: 768px) {
  .header_wrap .logo img {
    width: 5.9rem;
  }
}
.header_wrap .header_nav_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  padding: 1.2rem 3rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10rem;
  backdrop-filter: blur(0.8rem);
}
.header_wrap .header_nav_list .header_nav_item {
  position: relative;
}
.header_wrap .header_nav_list .header_nav_item a {
  display: inline-block;
  font-weight: 500;
  line-height: 1.8;
}
.header_wrap .header_nav_list .header_nav_item::before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -1.8rem;
  margin: auto;
  content: "";
  display: block;
  width: 0.6rem;
  height: 0.6rem;
}
@media screen and (max-width: 768px) {
  .header_wrap .header_nav_list .header_nav_item::before {
    right: auto;
    left: 0;
  }
}
.header_wrap .header_nav_list .header_nav_item:nth-child(3n-2)::before {
  background: #E8465A;
}
.header_wrap .header_nav_list .header_nav_item:nth-child(3n-1)::before {
  background: #898989;
}
.header_wrap .header_nav_list .header_nav_item:nth-child(3n)::before {
  background: #70C7DA;
}
@media screen and (min-width: 769px) {
  .header_wrap .header_nav_list .header_nav_item:last-child::before {
    display: none;
  }
}
.header_wrap .menu_btn {
  position: relative;
  width: 6.4rem;
  height: 6.2rem;
  cursor: pointer;
}
.header_wrap .menu_btn::before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  display: block;
  width: 200%;
  height: 200%;
  border-radius: 50%;
  background: #E8465A;
}
.header_wrap .menu_btn .line {
  position: absolute;
  z-index: 2;
  margin: auto;
  display: block;
  top: 0;
  right: 0.9rem;
  width: 3.2rem;
  height: 0.2rem;
  background: #fff;
  transition: all 0.4s ease-out;
}
.header_wrap .menu_btn .line:nth-child(1) {
  top: 1.3rem;
}
.header_wrap .menu_btn .line:nth-child(2) {
  top: 2.1rem;
}
.header_wrap .menu_btn.active .line:nth-child(1) {
  top: 1.6rem;
  transform: rotate(35deg);
}
.header_wrap .menu_btn.active .line:nth-child(2) {
  top: 1.6rem;
  transform: rotate(-35deg);
}
.header_wrap .menu_btn .en {
  position: absolute;
  top: 3.2rem;
  right: 0.9rem;
  color: #fff;
  min-width: 3.2rem;
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
}

.gnav {
  display: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}
@media screen and (max-width: 768px) {
  .gnav {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    width: 100%;
    height: 100vh;
    padding-top: 6.2rem;
    background: #70C7DA;
  }
}
@media screen and (max-width: 768px) {
  .gnav.active {
    opacity: 1;
    visibility: visible;
  }
}
.gnav .gnav_wrap {
  display: none;
}
@media screen and (max-width: 768px) {
  .gnav .gnav_wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 2rem 4% 12rem;
    height: calc(100vh - 6.2rem);
    overflow-y: auto;
  }
}
.gnav .gnav_list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem 0;
  padding: 4rem 2rem;
  background: #fff;
  border-radius: 1.2rem;
}
.gnav .gnav_list .gnav_item {
  position: relative;
}
.gnav .gnav_list .gnav_item a {
  display: inline-block;
  font-weight: 500;
  line-height: 1.5;
  padding-left: 1.4rem;
  font-size: 1.6rem;
}
.gnav .gnav_list .gnav_item::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  display: block;
  width: 0.6rem;
  height: 0.6rem;
}
.gnav .gnav_list .gnav_item:nth-child(3n-2)::before {
  background: #E8465A;
}
.gnav .gnav_list .gnav_item:nth-child(3n-1)::before {
  background: #898989;
}
.gnav .gnav_list .gnav_item:nth-child(3n)::before {
  background: #70C7DA;
}
.gnav .wide_btn,
.gnav .btn {
  margin-top: 2rem;
}

/* ----------------------------------------------------------------------------------------------------
*  フッター
* --------------------------------------------------------------------------------------------------*/
.footer_wrap .footer_box {
  padding: 8rem 0 6.4rem;
  border-radius: 12rem 0 0 0;
  background: #70C7DA;
}
@media screen and (max-width: 768px) {
  .footer_wrap .footer_box {
    padding: 4rem 0;
    border-radius: 6rem 0 0 0;
  }
}
.footer_wrap .footer_btn_box {
  display: flex;
  justify-content: space-between;
  gap: 2.4rem;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 768px) {
  .footer_wrap .footer_btn_box {
    flex-direction: column;
    gap: 1.6rem;
    margin-bottom: 1.6rem;
  }
}
.footer_wrap .footer_nav_box {
  padding: 3.2rem 2rem;
  background: #fff;
  border-radius: 2rem;
}
@media screen and (max-width: 768px) {
  .footer_wrap .footer_nav_box {
    padding: 3.2rem 4%;
    border-radius: 1.2rem;
  }
}
.footer_wrap .footer_nav_box .logo {
  text-align: center;
}
.footer_wrap .footer_nav_box .logo a {
  display: inline-block;
}
.footer_wrap .footer_nav_box .logo img {
  width: 18rem;
}
@media screen and (max-width: 768px) {
  .footer_wrap .footer_nav_box .logo img {
    width: 14rem;
  }
}
.footer_wrap .footer_nav_box .btn {
  margin-top: 3.2rem;
  display: flex;
}
@media screen and (max-width: 768px) {
  .footer_wrap .footer_nav_box .btn {
    margin-top: 4rem;
  }
}
.footer_wrap .footer_nav_box .footer_nav_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 3.2rem;
}
@media screen and (max-width: 768px) {
  .footer_wrap .footer_nav_box .footer_nav_list {
    justify-content: space-between;
    gap: 0.8rem 0;
    margin-top: 4rem;
  }
}
.footer_wrap .footer_nav_box .footer_nav_list .footer_nav_item {
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer_wrap .footer_nav_box .footer_nav_list .footer_nav_item {
    width: 50%;
  }
}
.footer_wrap .footer_nav_box .footer_nav_list .footer_nav_item a {
  display: inline-block;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .footer_wrap .footer_nav_box .footer_nav_list .footer_nav_item a {
    padding-left: 1.4rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 350px) {
  .footer_wrap .footer_nav_box .footer_nav_list .footer_nav_item a {
    font-size: 1.3rem;
  }
}
.footer_wrap .footer_nav_box .footer_nav_list .footer_nav_item::before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -1.8rem;
  margin: auto;
  content: "";
  display: block;
  width: 0.6rem;
  height: 0.6rem;
}
@media screen and (max-width: 768px) {
  .footer_wrap .footer_nav_box .footer_nav_list .footer_nav_item::before {
    right: auto;
    left: 0;
  }
}
.footer_wrap .footer_nav_box .footer_nav_list .footer_nav_item:nth-child(3n-2)::before {
  background: #E8465A;
}
.footer_wrap .footer_nav_box .footer_nav_list .footer_nav_item:nth-child(3n-1)::before {
  background: #898989;
}
.footer_wrap .footer_nav_box .footer_nav_list .footer_nav_item:nth-child(3n)::before {
  background: #70C7DA;
}
@media screen and (min-width: 769px) {
  .footer_wrap .footer_nav_box .footer_nav_list .footer_nav_item:last-child::before {
    display: none;
  }
}
.footer_wrap .copy {
  padding: 1.6rem 0;
  background: #E8465A;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .footer_wrap .copy {
    padding: 1.2rem 0;
    font-size: 1rem;
  }
}

/* ----------------------------------------------------------------------------------------------------
*  共通
* --------------------------------------------------------------------------------------------------*/
.txt {
  line-height: 1.8;
}

.bold {
  font-weight: bold;
}

.txt_up {
  text-transform: uppercase;
}

.txt_noup {
  text-transform: none;
}

.txt_center {
  text-align: center;
}

.txt_right {
  text-align: right;
}

.txt_left {
  text-align: left;
}

.ib {
  display: inline-block;
}

@media screen and (min-width: 769px) {
  .pc_ib {
    display: inline-block;
  }
  .pc_tate {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    white-space: nowrap;
  }
}
.tate {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  white-space: nowrap;
}

.txt_blue01 {
  color: #70C7DA;
}

.txt_red01 {
  color: #E8465A;
}

.txt_gray01 {
  color: #898989;
}

.txt_beige01 {
  color: #B5B39D;
}

@media screen and (max-width: 768px) {
  .img img {
    width: 100%;
  }
  .sp_ib {
    display: inline-block;
  }
}
/* ------------------------------
	.btn
------------------------------ */
.btn {
  display: flex;
}
@media screen and (max-width: 768px) {
  .btn {
    width: 100%;
  }
}
.btn.center {
  justify-content: center;
}
.btn a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 32rem;
  min-height: 4.4rem;
  padding: 1rem 1rem 1rem 2.4rem;
  border-radius: 5rem;
  background: #E8465A;
  border: 1px solid #E8465A;
}
@media screen and (max-width: 768px) {
  .btn a {
    width: 100%;
    min-height: 4rem;
    padding: 0.8rem 1rem 0.8rem 2.4rem;
  }
}
.btn a .btn_txt {
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .btn a .btn_txt {
    font-size: 1.4rem;
  }
}
.btn a .ico {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1rem;
  margin: auto;
  content: "";
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  background: #fff url(../img/common/ico_arw02.svg) no-repeat center center;
  background-size: 1.2rem;
  border-radius: 50%;
}
@media screen and (min-width: 769px) {
  .btn a:hover {
    opacity: 1;
    background: #fff;
    animation: btnPop 0.3s ease;
  }
  .btn a:hover .btn_txt {
    color: #E8465A;
  }
  .btn a:hover .ico {
    background: #E8465A url(../img/common/ico_arw03.svg) no-repeat center center;
    background-size: 1.2rem;
  }
}
.btn.black a {
  background: #3E3A39;
  border-color: #3E3A39;
}
.btn.black a .ico {
  background: #fff url(../img/common/ico_arw01.svg) no-repeat center center;
  background-size: 1.2rem;
}
@media screen and (min-width: 769px) {
  .btn.black a:hover {
    background: #fff;
  }
  .btn.black a:hover .btn_txt {
    color: #3E3A39;
  }
  .btn.black a:hover .ico {
    background: #3E3A39 url(../img/common/ico_arw03.svg) no-repeat center center;
    background-size: 1.2rem;
  }
}
.btn.nobtn a {
  justify-content: center;
  pointer-events: none;
  background: #C6C6C6;
  border-color: #C6C6C6;
}
.btn.nobtn a .btn_txt {
  color: #3E3A39;
}
.btn.nobtn a .ico {
  display: none;
}

.wide_btn {
  width: 100%;
}
.wide_btn a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 11.5rem;
  padding: 0 2.4rem;
  border-radius: 2rem;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .wide_btn a {
    flex-wrap: wrap;
    min-height: 6rem;
    padding: 1.2rem 4%;
    border-radius: 1.2rem;
  }
}
@media screen and (min-width: 769px) {
  .wide_btn a:hover {
    opacity: 1;
    animation: btnPop 0.3s ease;
  }
}
.wide_btn .en {
  padding: 1rem 0 1rem 8rem;
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .wide_btn .en {
    padding: 0 0 0 4rem;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 355px) {
  .wide_btn .en {
    font-size: 2rem;
  }
}
.wide_btn .en.ico01 {
  background: url(../img/common/icon_contact.svg) no-repeat center left;
  background-size: 6.7rem;
}
@media screen and (max-width: 768px) {
  .wide_btn .en.ico01 {
    background-size: 3.2rem;
  }
}
.wide_btn .en.ico02 {
  background: url(../img/common/icon_download.svg) no-repeat center left;
  background-size: 6.7rem;
}
@media screen and (max-width: 768px) {
  .wide_btn .en.ico02 {
    background-size: 3.2rem;
  }
}
.wide_btn .btn_txt {
  padding: 2rem 7.2rem 2rem 0;
  background: url(../img/common/icon_btn_arrow_redbg.svg) no-repeat center right;
  background-size: 4.8rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .wide_btn .btn_txt {
    padding: 0.5rem 3.6rem 0.5rem 0;
    background-size: 2.4rem;
    font-size: 1.4rem;
  }
}

@keyframes btnPop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.linknone {
  pointer-events: none;
  color: #898989;
}

/* ------------------------------
	.ttl
------------------------------ */
.str_ttl .en {
  display: block;
  font-weight: bold;
  font-size: 4.8rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .str_ttl .en {
    font-size: 3.2rem;
  }
}
.str_ttl .ttl_txt {
  position: relative;
  display: block;
  padding-left: 2.4rem;
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .str_ttl .ttl_txt {
    padding-left: 2.2rem;
    font-size: 1.8rem;
  }
}
.str_ttl .ttl_txt::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  background: #E8465A;
}
@media screen and (max-width: 768px) {
  .str_ttl .ttl_txt::before {
    width: 1.4rem;
    height: 1.4rem;
  }
}

/* ------------------------------
	.box
------------------------------ */
.flex {
  display: flex;
  justify-content: space-between;
}

.page_head {
  min-height: 30rem;
  padding: 11.4rem 0 4rem;
  border-radius: 0 0 12rem 0;
  background: #fff;
  border-bottom: 0.3rem solid #C6C6C6;
  border-right: 0.3rem solid #C6C6C6;
  margin-right: -0.3rem;
  padding-right: 0.3rem;
}
@media screen and (max-width: 768px) {
  .page_head {
    min-height: 20rem;
    padding-top: 8rem;
    border-radius: 0 0 6rem 0;
  }
}

/* ------------------------------
	.fade
------------------------------ */
.fade .fade-up, .fade.fade-up {
  opacity: 0;
  transform: translateY(4rem);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade.fade-on .fade-up, .fade.fade-on.fade-up {
  opacity: 1;
  transform: translateY(0);
}
.fade .fade-in, .fade.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease;
}
.fade.fade-on .fade-in, .fade.fade-on.fade-in {
  opacity: 1;
}
.fade .d1 {
  transition-delay: 0.4s;
}
.fade .d2 {
  transition-delay: 0.8s;
}
.fade .d3 {
  transition-delay: 1.2s;
}
.fade .d4 {
  transition-delay: 1.6s;
}
.fade .d5 {
  transition-delay: 2s;
}