@charset "UTF-8";
/*** The new CSS reset - version 1.11.1 (last updated 24.10.2023) ***/

*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg*, symbol*)) {
  all: unset;
  display: revert
}

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

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none
}

a,
button {
  cursor: revert
}

ol,
ul,
menu,
summary {
  list-style: none
}

img {
  max-inline-size: 100%;
  max-block-size: 100%
}

table {
  border-collapse: collapse
}

input,
textarea {
  -webkit-user-select: auto
}

textarea {
  white-space: revert
}

meter {
  -webkit-appearance: revert;
  appearance: revert
}

:where(pre) {
  all: revert;
  box-sizing: border-box
}

::placeholder {
  color: unset
}

:where([hidden]) {
  display: none
}

:where([contenteditable]:not([contenteditable="false"])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto
}

:where([draggable="true"]) {
  -webkit-user-drag: element
}

:where(dialog:modal) {
  all: revert;
  box-sizing: border-box
}

/* vリセットCSSここまで */

/****************************************
		1. General Setting
*****************************************/

html {
  font-family: "Zen Kaku Gothic New", serif;
  font-style: normal;
  font-size: 16px;
  color: #000;
  color: #333333;

  scroll-behavior: smooth;
  scroll-padding-top: 0px;
}

.u-ftInter {
  font-family: "Inter", sans-serif;
  font-style: normal;
}

body {
  margin: 0;
  color: #000;
  color: #333333;
  font-size: min(calc(16vw / 1440*100), 16px);
  line-height: 100%;
  width: 100%;
}

img,
svg {
  width: 100%;
  vertical-align: top;
}

a {
  color: #000;
  color: #333333;
  outline: none;
  text-decoration: none;
  transition: all 0.4s ease;
}

a:hover {
  opacity: 0.8;
}

p {
  line-height: 1;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
}

summary {
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

.u-fadeUp {
  opacity: 1;
  filter: blur(0);
  transition: opacity 1.2s, filter 1.2s, transform 1.2s;
  transition-delay: opacity 0s, filter 0.3s, transform 0s;
  transform: translateY(0%);
}

.u-fadeUp.is-active {
  opacity: 0;
  transform: translateY(5%);
  filter: blur(10px);
}

.u-fadeIn {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
  transition: opacity 1.2s, filter 1.2s, transform 1.2s;
  transition-delay: opacity 0.6s, filter 0.9s, transform 0.9s;
}

.u-fadeIn.is-active {
  transform: scale(1.05);
  opacity: 0;
  filter: blur(12px);
}

.br-pc {
  display: inline-block;
}

.br-sp {
  display: none;
}

.container {
  position: relative;
  overflow-x: hidden;
  padding-top: 0;
}

@media screen and (max-width: 767px) {

  .br-pc {
    display: none;
  }

  .br-sp {
    display: inline-block;
  }

  body.is-fixed-sp {
    overflow: hidden;
  }
}

/* header */
.header {
  position: relative;
  width: 100%;
  height: calc(110vw / 1440* 100);
  background-color: #fff;
  box-sizing: border-box;
}

.header__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  height: 100%;
}

.header__logo {
  width: calc(322vw / 1440* 100);
  margin-left: calc(53vw / 1440* 100);
}

.header__inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
}

.header__menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-right: calc(46vw / 1440* 100);
}

.header__menu__link {
  display: block;
  text-align: center;
  font-size: calc(18vw / 1440* 100);
  line-height: 1;
  letter-spacing: 0;
  margin-left: calc(44vw / 1440* 100);
}

.header__menu__link:first-child {
  display: none;
}

.header__menu__link a {
  color: #00668A;
}

.header__menu__contact {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  box-sizing: border-box;
  background-color: #FF559F;
  color: #FFF15B;
  line-height: 1;
  padding: 0;
  border-radius: 2em;
  font-size: calc(20vw / 1440* 100);
  width: calc(168vw / 1440* 100);
  height: calc(50vw / 1440* 100);
  margin-right: calc(27vw / 1440* 100);
  box-shadow: calc(2vw / 1440* 100) calc(2vw / 1440* 100) calc(6vw / 1440* 100) #b8b8b8;
}

.header__menu__contact_sp {
  display: none;
}

.header__menu__contact_sp_sns {
  display: none;
}

.header__button {
  display: none;
}


@media screen and (max-width: 767px) {
  .header {
    height: calc(80vw / 390* 100);
  }

  .header__logo {
    width: calc(250vw / 390* 100);
    margin-left: calc(22vw / 390* 100);
  }

  .header__nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 0vw;
    height: 0vh;
    justify-content: flex-start;
    flex-direction: column;
    overflow: hidden;
    transition: opacity 0.3s 0s, width 0s 0.3s, height 0s 0.3s;
    opacity: 0;
    z-index: 80;
    pointer-events: none;
  }

  .header__nav.is-active {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.95);
    transition: opacity 0.3s 0s, width 0s 0s, height 0s 0s;
    opacity: 1;
    pointer-events: all;
  }

  .header__menu {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    margin-right: 0;
  }

  .header__menu__link {
    font-size: calc(22vw / 390* 100);
    line-height: 1.33;
    margin-top: calc(25vw / 390* 100);
    margin-left: 0;
    width: 100%;
  }

  .header__menu__link:first-child {
    display: block;
    margin-top: 0;
  }

  .header__menu__contact {
    display: none;
  }

  .header__menu__contact_sp {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    box-sizing: border-box;
    background-color: #FF559F;
    color: #FFF15B;
    line-height: 1;
    padding: 0;
    border-radius: 2em;
    margin-top: calc(38vw / 390* 100);
    font-size: calc(22vw / 390* 100);
    width: calc(220vw / 390* 100);
    height: calc(55vw / 390* 100);
    box-shadow: calc(2vw / 390* 100) calc(2vw / 390* 100) calc(6vw / 390* 100) #b8b8b8;
  }

  .header__menu__contact_sp a {
    color: #FFF15B;
  }

  .header__menu__contact_sp_sns {
    display: flex;
    align-items: center;
    margin-top: calc(32vw / 390* 100);
  }

  .header__button {
    position: relative;
    display: block;
    width: calc(95vw / 390* 100);
    height: calc(80vw / 390* 100);
    background-color: #fff;
    cursor: pointer;
    z-index: 300;
  }

  .header__button__bar {
    position: absolute;
    display: block;
    width: calc(30vw / 390* 100);
    height: calc(2vw / 390* 100);
    border-radius: 5px;
    right: 0;
    left: 0;
    margin: auto;
    background-color: #00668A;
    transform-origin: center center;
    transition: transform 0.3s;

  }

  .header__button__bar:nth-child(1) {
    top: calc(23vw / 390* 100);
  }

  .is-active>.header__button__bar:nth-child(1) {
    top: calc(33vw / 390* 100);
    transform: rotate(35deg);
  }

  .header__button__bar:nth-child(2) {
    top: calc(33vw / 390* 100);
  }

  .is-active>.header__button__bar:nth-child(2) {
    transform: scaleX(0);
  }

  .header__button__bar:nth-child(3) {
    top: calc(43vw / 390* 100);
  }

  .is-active>.header__button__bar:nth-child(3) {
    top: calc(33vw / 390* 100);
    transform: rotate(-35deg);
  }

  .header__button__txt {
    color: #00668A;
    font-size: calc(11vw / 390* 100);
    position: absolute;
    text-align: center;
    font-weight: 500;
    right: 0;
    left: 0;
    bottom: calc(18vw / 390* 100);
    margin: auto;
  }
}

/* footer */
.ft__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: calc(125vw / 1440* 100) 0 calc(45vw / 1440* 100);
  width: calc(1060vw /1440*100);
}

.ft__wrap_menu_list {
  display: flex;
  flex-wrap: wrap;
  width: calc(735vw / 1440* 100);
  font-weight: 400;
}

.ft__wrap_menu_list_item {
  margin-right: calc(125vw / 1440* 100);
  margin-bottom: calc(55vw / 1440* 100);
}

.ft__wrap_menu_list_item:nth-child(2) {
  margin-right: calc(84vw / 1440* 100);
}

.ft__wrap_menu_list_item:nth-child(4) {
  margin-right: 0;
}

.ft__wrap_menu_list_item:nth-child(5) {
  margin-right: calc(105vw / 1440* 100);
}

.ft__wrap_menu_list_item:nth-child(6) {
  margin-right: calc(163vw / 1440* 100);
}

.ft__wrap_menu_list_item_link {
  line-height: 1;
  font-size: calc(20vw / 1440* 100);
}

.ft__wrap_menu_list_item_link:hover {
  color: #00668A;
}

.ft__wrap_sns_list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: calc(300vw / 1440* 100);
  flex-wrap: wrap;
}

.ft__wrap_sns_list_item {
  width: calc(50vw / 1440* 100);
  margin-right: calc(15vw / 1440* 100);
  margin-left: calc(15vw / 1440* 100);
}

.ft__wrap_sns_list_item:nth-child(2) {
  width: calc(80vw / 1440* 100);
  margin-right: 0;
}

.copy_right {
  text-align: center;
  font-size: calc(15vw /1440*100);
  font-weight: 300;
  margin-bottom: calc(20vw / 1440* 100);
}

.sp-nav_menu {
  display: none;
}

@media screen and (max-width: 767px) {

  .ft__wrap {
    flex-direction: column;
    align-items: flex-start;
    width: calc(313vw /390*100);
    padding: calc(10vw / 390* 100) 0 calc(44vw / 390* 100);
  }

  .ft__wrap_menu_list {
    display: flex;
    flex-wrap: wrap;
    width: calc(200vw / 390* 100);
    padding-left: calc(25vw / 390* 100);
    margin-bottom: calc(40vw / 390* 100);
  }

  .ft__wrap_menu_list_item {
    margin-right: 0;
    width: 100%;
    margin-bottom: calc(30vw / 390* 100);
  }

  .ft__wrap_menu_list_item:nth-child(2),
  .ft__wrap_menu_list_item:nth-child(4),
  .ft__wrap_menu_list_item:nth-child(5),
  .ft__wrap_menu_list_item:nth-child(6) {
    margin-right: 0;
  }

  .ft__wrap_menu_list_item_link {
    line-height: 1;
    font-size: calc(18vw / 390* 100);
  }

  .ft__wrap_menu_list_item_link:hover {
    color: #00668A;
  }

  .ft__wrap_sns_list {
    justify-content: center;
    width: calc(310vw / 390* 100);
  }

  .ft__wrap_sns_list_item {
    width: calc(50vw / 390* 100);
    margin-right: calc(15vw / 390* 100);
    margin-left: calc(15vw / 390* 100);
  }

  .ft__wrap_sns_list_item:nth-child(2) {
    width: calc(80vw / 390* 100);
    margin-right: 0;
  }

  .copy_right {
    font-size: calc(14vw /390*100);
    margin-bottom: calc(80vw / 390* 100);
  }

  .sp-nav_menu {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: calc(15vw / 390* 100);
    justify-content: center;
    align-items: center;
    padding: 0 calc(16vw / 390* 100);
  }

  .sp-nav_menu_link {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    box-sizing: border-box;
    background-color: #FF559F;
    color: #FFF15B;
    line-height: 1;
    padding: 0;
    border-radius: 2em;
    font-size: calc(20vw / 390* 100);
    width: calc(168vw / 390* 100);
    height: calc(51vw / 390* 100);
    margin: 0 calc(8vw / 390* 100);
    box-shadow: calc(2vw / 390* 100) calc(2vw / 390* 100) calc(6vw / 390* 100) #b8b8b8;
  }
}


/* mv-section */
.mv-slide {
  margin: 0 auto;
  width: calc(1340vw /1440*100);
}

/* ズーム */
.splide__slide img {
  transition: 11.0s ease-out;
}

.splide__slide.is-active img {
  transform: scale(1.15);
  transition-delay: 0s;
}

/* スライドのサイズ調整 */
.splide__slide img {
  height: auto;
  width: 100%;
}

@media screen and (max-width: 767px) {

  .mv-slide {
    margin: 0 auto;
    width: calc(340vw / 390* 100);
  }
}

/* menu-section */

.menu-section {
  padding: calc(135vw /1440*100) 0 calc(189vw /1440*100);
}

.menu-box {
  position: relative;
  margin: 0 auto;
  width: calc(1200vw /1440*100);
  padding: calc(11vw /1440*100) calc(45vw /1440*100) calc(90vw /1440*100);
  background-color: #CDF3FF;
}

.menu-box::before {
  z-index: -1;
  content: "";
  position: absolute;
  display: block;
  margin: auto;
  left: 0;
  right: 0;
  bottom: calc(240vw /1440*100);
  width: calc(520vw /1440*100);
  height: calc(255vw /1440*100);
  border-radius: 50% / 100% 100% 0 0;
  background: #CDF3FF;
}

.menu-section_ttl {
  text-align: center;
  color: #00668A;
  line-height: 0.9;
  font-size: calc(33vw /1440*100);
}

.menu-section_ttl_sub {
  font-size: calc(20vw /1440*100);
  font-weight: 300;
}

.menu-box_wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: calc(30vw / 1440* 100);
}

.menu-box_wrap_item {
  width: calc(340vw /1440*100);
}

.menu-box_wrap_item_img {
  box-shadow: 0 calc(2vw / 1440* 100) calc(6vw / 1440* 100) #b8b8b8;
}

.menu-box_wrap_item_ttl {
  position: relative;
  background-color: #00A6FF;
  color: #fff;
  text-align: center;
  line-height: 1;
  font-weight: 600;
  margin: 0;
  border-top-left-radius: 0.6em;
  border-top-right-radius: 0.6em;
  font-size: calc(20vw / 1440* 100);
  padding: calc(15vw / 1440* 100) 0;
}

.menu-box_wrap_item_ttl::after {
  position: absolute;
  content: "";
  display: block;
  background-image: url(../image/common/icon_arrow_white.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: calc(20vw / 1440* 100);
  height: calc(20vw / 1440* 100);
  top: 50%;
  right: calc(20vw / 1440* 100);
  transform: translateY(-50%);
}

.menu-box_under {
  position: absolute;
  background-color: #00A6FF;
  text-align: center;
  width: calc(672vw /1440*100);
  padding: calc(25vw /1440*100);
  bottom: calc(-99vw / 1440* 100);
  left: 50%;
  transform: translateX(-50%);
}

.menu-box_under::after {
  position: absolute;
  content: "";
  display: block;
  background-image: url(../image/common/icon_arrow_white.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: calc(30vw / 1440* 100);
  height: calc(30vw / 1440* 100);
  top: 50%;
  right: calc(60vw / 1440* 100);
  transform: translateY(-50%);
}

.menu-box_under_ttl {
  color: #FFF15B;
  font-weight: 600;
  font-size: calc(30vw / 1440* 100);
}

.menu-box_under_text {
  color: #fff;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 1em;
  font-size: calc(18vw / 1440* 100);
}

@media screen and (max-width: 767px) {
  .menu-section {
    padding: calc(120vw / 390* 100) 0 calc(120vw / 390* 100);
  }

  .menu-box {
    width: 100%;
    padding: calc(24vw / 390* 100) calc(34vw / 390* 100) calc(80vw / 390* 100);
  }

  .menu-box::before {
    bottom: calc(870vw / 390* 100);
    width: calc(264vw / 390* 100);
    height: calc(132vw / 390* 100);
    border-radius: 50% / 100% 100% 0 0;
  }

  .menu-section_ttl {
    font-size: calc(26vw / 390* 100);
  }

  .menu-section_ttl_sub {
    font-size: calc(16vw / 390* 100);
  }

  .menu-box_wrap {
    flex-direction: column;
    margin-top: calc(35vw / 390* 100);
  }

  .menu-box_wrap_item {
    width: 100%;
  }

  .menu-box_wrap_item_img {
    box-shadow: 0 calc(2vw / 390* 100) calc(6vw / 390* 100) #b8b8b8;
  }

  .menu-box_wrap_item:not(:first-child) {
    margin-top: calc(35vw / 390* 100);
  }

  .menu-box_wrap_item_ttl {
    font-size: calc(20vw / 390* 100);
    padding: calc(15vw / 390* 100) 0;
  }

  .menu-box_wrap_item_ttl::after {
    width: calc(24vw / 390* 100);
    height: calc(24vw / 390* 100);
    right: calc(20vw / 390* 100);
  }

  .menu-box_under {
    width: calc(350vw / 390* 100);
    padding: calc(30vw / 390* 100) calc(20vw / 390* 100) calc(20vw / 390* 100);
    bottom: calc(-90vw / 390* 100);
  }

  .menu-box_under::after {
    width: calc(24vw / 390* 100);
    height: calc(24vw / 390* 100);
    right: calc(14vw / 390* 100);
  }

  .menu-box_under_ttl {
    font-size: calc(28vw / 390* 100);
  }

  .menu-box_under_text {
    font-size: calc(14vw / 390* 100);
  }
}

/* news-section */
.news-box {
  width: 100%;
  background-image: url(../image/top/news_bg_pc.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: calc(60vw / 1440* 100) calc(120vw / 1440* 100) calc(55vw / 1440* 100);
}

.news-section_ttl {
  text-align: center;
  color: #FFF15B;
  line-height: 0.9;
  font-size: calc(33vw / 1440* 100);
}

.news-section_ttl_sub {
  font-size: calc(20vw / 1440* 100);
  font-weight: 300;
}

.news-box_list {
  margin-top: calc(55vw / 1440* 100);
  margin-bottom: calc(20vw / 1440* 100);
}

.news-box_item {
  border-top: solid calc(1vw / 1440* 100) #fff;
}

.news-box_item_date {
  color: #fff;
  font-size: calc(14vw / 1440* 100);
  margin-top: 1em;
}

.news-box_item_ttl {
  color: #fff;
  font-weight: 600;
  font-size: calc(16vw / 1440* 100);
  padding-top: 1em;
  padding-bottom: 1em;
  margin-bottom: 1.1em;
}

.news-btn {
  position: relative;
  background-color: #FF559F;
  color: #fff;
  text-align: center;
  font-weight: 600;
  line-height: 1;
  font-size: calc(20vw / 1440* 100);
  display: block;
  width: calc(252vw / 1440* 100);
  padding: 0.85em;
  border-radius: 2em;
  margin: auto;
  margin-right: 0;
}

.news-btn::after {
  position: absolute;
  content: "";
  display: block;
  background-image: url(../image/common/icon_arrow_white.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: calc(25vw / 1440* 100);
  height: calc(25vw / 1440* 100);
  top: 50%;
  right: calc(20vw / 1440* 100);
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {

  .news-box {
    width: 100%;
    background-image: url(../image/top/news_bg_sp.webp);
    padding: calc(42vw / 390* 100) calc(20vw / 390* 100);
  }

  .news-section_ttl {
    font-size: calc(26vw / 390* 100);
  }

  .news-section_ttl_sub {
    font-size: calc(16vw / 390* 100);
  }

  .news-box_list {
    margin-top: calc(40vw / 390* 100);
    margin-bottom: calc(25vw / 390* 100);
  }

  .news-box_item {
    border-top: solid calc(1vw / 390* 100) #fff;
  }

  .news-box_item_date {
    font-size: calc(14vw / 390 * 100);
  }

  .news-box_item_ttl {
    font-size: calc(16vw / 390* 100);
    line-height: 1.35;
  }

  .news-btn {
    font-size: calc(20vw / 390* 100);
    width: calc(260vw / 390* 100);
    padding: 0.75em;
    margin-right: auto;
  }

  .news-btn::after {
    width: calc(24vw / 390* 100);
    height: calc(24vw / 390* 100);
    top: 50%;
    right: calc(20vw / 390* 100);
    transform: translateY(-50%);
  }
}

/* blog-section */
.blog-box {
  padding: calc(80vw / 1440* 100) 0;
  margin: 0 auto;
  width: calc(1200vw /1440*100);
}

.blog-section_ttl {
  text-align: center;
  color: #00A6FF;
  line-height: 0.9;
  font-size: calc(33vw / 1440* 100);
}

.blog-section_ttl_sub {
  font-size: calc(20vw / 1440* 100);
  font-weight: 300;
}

.blog-box_list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: calc(55vw / 1440* 100);
  margin-bottom: calc(65vw / 1440* 100);
}

.blog-box_item {
  width: calc(343vw / 1440* 100);
  position: relative;
}

.blog-box_item::before {
  position: absolute;
  top: calc(-2vw / 1440* 100);
  right: calc(-43vw / 1440* 100);
  content: '';
  width: calc(1vw / 1440* 100);
  height: calc(220vw / 1440* 100);
  background-image: linear-gradient(to bottom, #9D9D9D, #9D9D9D calc(5vw / 1440* 100), transparent calc(5vw / 1440* 100), transparent calc(5vw / 1440* 100));
  background-size: calc(5vw / 1440* 100) calc(10vw / 1440* 100);
  background-position: left bottom;
  background-repeat: repeat-y;
}

.blog-box_item:last-child::before {
  content: none;
}

.blog-box_item_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-box_item_thumbnail {
  width: calc(138vw / 1440* 100);
  object-fit: cover;
}

.blog-box_item_top_txt_wrap {
  display: flex;
  flex-direction: column;
  width: calc(195vw / 1440* 100);
}

.blog-box_item_date {
  font-size: calc(16vw / 1440* 100);
  padding-bottom: 0.6em;
}

.blog-box_item_ttl {
  font-weight: 600;
  line-height: 1.3;
  font-size: calc(20vw / 1440* 100);
}

.blog-box_item_under_txt {
  line-height: 1.6;
  padding-top: 1.2em;
  padding-bottom: 1.2em;
  font-size: calc(16vw / 1440* 100);

  height: 3.8lh;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  line-clamp: 3.8;
  -webkit-line-clamp: 3.8;
  position: relative;
}

.blog-box_item_under_txt_after {
  position: absolute;
  right: calc(5vw / 1440* 100);
  bottom: calc(-2vw / 1440* 100);
  text-decoration: underline;
  text-decoration-thickness: calc(1vw / 1440* 100);
  background-color: #fff;
}

.blog-btn {
  position: relative;
  background-color: #FF559F;
  color: #fff;
  text-align: center;
  font-weight: 600;
  line-height: 1;
  font-size: calc(20vw / 1440* 100);
  display: block;
  width: calc(252vw / 1440* 100);
  padding: 0.85em;
  border-radius: 2em;
  margin: auto;
  margin-right: 0;
}

.blog-btn::after {
  position: absolute;
  content: "";
  display: block;
  background-image: url(../image/common/icon_arrow_white.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: calc(25vw / 1440* 100);
  height: calc(25vw / 1440* 100);
  top: 50%;
  right: calc(20vw / 1440* 100);
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .blog-box {
    padding: calc(48vw / 390* 100) 0 calc(40vw / 390* 100);
    width: calc(324vw /390*100);
  }

  .blog-section_ttl {
    font-size: calc(26vw / 390* 100);
  }

  .blog-section_ttl_sub {
    font-size: calc(16vw / 390* 100);
  }

  .blog-box_list {
    margin-top: calc(20vw / 390* 100);
    margin-bottom: calc(45vw / 390* 100);
    flex-direction: column;
  }

  .blog-box_item {
    width: 100%;
  }

  .blog-box_item:not(:last-child) {
    margin-bottom: calc(45vw / 390* 100);
  }

  .blog-box_item::before,
  .blog-box_item:last-child::before {
    position: absolute;
    top: calc(170vw / 390* 100);
    right: auto;
    content: '';
    width: 100%;
    height: calc(1vw / 390* 100);
    background-image: linear-gradient(to right, #9D9D9D, #9D9D9D calc(5vw / 390* 100), transparent calc(5vw / 390* 100), transparent calc(5vw / 390* 100));
    background-size: calc(10vw / 390* 100) calc(5vw / 390* 100);
    background-position: left bottom;
    background-repeat: repeat-x;
  }

  .blog-box_item_thumbnail {
    width: calc(130vw / 390* 100);
  }

  .blog-box_item_top_txt_wrap {
    width: calc(183vw / 390* 100);
  }

  .blog-box_item_date {
    font-size: calc(14vw / 390* 100);
  }

  .blog-box_item_ttl {
    font-size: calc(16vw / 390* 100);
  }

  .blog-box_item_under_txt {
    font-size: calc(14vw / 390* 100);
    padding: 0.5em 0;
    height: 2.5lh;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    line-clamp: 2.5;
    -webkit-line-clamp: 2.5;
  }

  .blog-box_item_under_txt_after {
    right: calc(1vw / 390* 100);
    bottom: calc(4vw / 390* 100);
    text-decoration-thickness: calc(1vw / 390* 100);
  }

  .blog-btn {
    font-size: calc(20vw / 390* 100);
    width: calc(260vw / 390* 100);
    padding: 0.75em;
    margin-right: auto;
  }

  .blog-btn::after {
    width: calc(24vw / 390* 100);
    height: calc(24vw / 390* 100);
    right: calc(20vw / 390* 100);
  }
}

/* faq-section */
.faq-box {
  width: 100%;
  background-color: #ECFBFF;
  padding: calc(80vw / 1440* 100) calc(165vw / 1440* 100) calc(80vw / 1440* 100);
}

.faq-section_ttl {
  text-align: center;
  color: #00A6FF;
  line-height: 0.9;
  font-size: calc(33vw / 1440* 100);
}

.faq-box_tab_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: calc(60vw / 1440* 100);

}

.faq-box_tab_label {
  line-height: 0.7;
  color: #9BBFE9;
  background: #fff;
  text-align: center;
  width: calc(260vw / 1440* 100);
  font-size: calc(18vw / 1440* 100);
  border: solid calc(1vw / 1440* 100) #0068DE;
  border-radius: 0.5em;
  padding: 1em;
  order: -1;
  margin-bottom: 1.7em;
}

.faq-box_tab_content {
  width: 100%;
  height: 0;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  pointer-events: none;
}

/* アクティブなタブ */
.faq-box_tab_switch:checked+.faq-box_tab_label {
  background: #0068DE;
  color: #FCFFAF;
}

.faq-box_tab_switch:checked+.faq-box_tab_label+.faq-box_tab_content {
  height: 100%;
  opacity: 1;
  pointer-events: all;
}

/* ラジオボタン非表示 */
.faq-box_tab_switch {
  display: none;
}

.faq-box_tab_content_q {
  font-weight: 600;
  display: inline-block;
  color: #0052B0;
  line-height: 1.6;
  font-size: calc(17vw / 1440* 100);
  margin-bottom: calc(15vw / 1440* 100);
  padding-left: 3em;
  text-indent: -3em;
}

.faq-box_tab_content_q_txt_head {
  font-weight: 500;
  font-size: calc(26vw / 1440* 100);
  vertical-align: calc(-2vw / 1440* 100);
}


.faq-box_tab_content_a {
  font-weight: 400;
  color: #000;
  line-height: 1.6;
  font-size: calc(16vw / 1440* 100);
  margin-top: -1em;
  margin-bottom: 1.4em;
  padding-left: 3em;
  text-indent: -3em;
}

.faq-box_tab_content_a_txt_head {
  font-weight: 500;
  font-size: calc(26vw / 1440* 100);
  vertical-align: calc(-2vw / 1440* 100);
}

@media screen and (max-width: 767px) {

  .faq-box {
    padding: calc(40vw / 390* 100) calc(34vw / 390* 100) calc(36vw / 390* 100);
  }

  .faq-section_ttl {
    font-size: calc(32vw / 390* 100);
  }

  .faq-box_tab_wrap {
    margin-top: calc(27vw / 390* 100);
  }

  .faq-box_tab_label {
    width: calc(150vw / 390* 100);
    font-size: calc(12vw / 390* 100);
    border: solid calc(1vw / 390* 100) #0068DE;
    border-radius: 0.5em;
    padding: 1.2em 0;
    margin-bottom: 0.8em;
  }

  .faq-box_tab_label.label04 {
    margin-bottom: 2em;
  }

  .faq-box_tab_content_q {
    line-height: 1.7;
    font-size: calc(14vw / 390* 100);
    margin-bottom: calc(20vw / 390* 100);
    padding-left: 3em;
    text-indent: -3em;
  }

  .faq-box_tab_content_q_txt_head {
    line-height: 1;
    font-size: calc(24vw / 390* 100);
    vertical-align: calc(-4vw / 390* 100);
  }

  .faq-box_tab_content_a {
    line-height: 1.7;
    font-size: calc(14vw / 390* 100);
    margin-top: 0;
    margin-bottom: calc(28vw / 390* 100);
    padding-left: 3em;
    text-indent: -3em;
  }

  .faq-box_tab_content_a_txt_head {
    line-height: 1;
    font-size: calc(24vw / 390* 100);
    vertical-align: calc(-4vw / 390* 100);
  }
}

/* shopinfo-section */
.shopinfo-box {
  padding: calc(80vw / 1440* 100) 0 0;
  margin: 0 auto;
  width: calc(960vw /1440*100);
}

.shopinfo-section_ttl {
  text-align: center;
  color: #00A6FF;
  line-height: 0.9;
  font-size: calc(33vw / 1440* 100);
}

.shopinfo-section_ttl_sub {
  font-size: calc(20vw / 1440* 100);
  font-weight: 300;
}

.shopinfo-box_wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: calc(65vw / 1440* 100);
}

.shopinfo-box_wrap_left {
  width: calc(472vw / 1440* 100);
}

.shopinfo-box_wrap_right {
  width: calc(416vw / 1440* 100);
  aspect-ratio: 42/37;
}

.shopinfo-box_wrap_logo {
  width: calc(280vw / 1440* 100);
  margin-bottom: calc(26vw / 1440* 100);
}

.shopinfo-box_wrap_tbl {
  text-align: left;
  font-size: calc(20vw / 1440* 100);
  line-height: 1.3;
  font-weight: 600;
}

.shopinfo-box_wrap_tbl__headline {
  box-sizing: border-box;
  vertical-align: top;
  color: #00668A;
  width: calc(130vw / 1440* 100);
  padding-bottom: 1.3em;
}

.shopinfo-box_wrap_tbl__cell {
  padding-bottom: 1.3em;
  color: #313131;
}

.shopinfo-box_wrap_tbl__cell_red {
  display: inline-block;
  font-weight: 400;
  color: #FF0000;
  padding-top: 0.3em;
  font-size: calc(15vw / 1440* 100);
}

@media screen and (max-width: 767px) {

  .shopinfo-box {
    padding: calc(54vw / 390* 100) 0 0;
    margin: 0 auto;
    width: 100%;
  }

  .shopinfo-section_ttl {
    font-size: calc(26vw / 390* 100);
  }

  .shopinfo-section_ttl_sub {
    font-size: calc(16vw / 390* 100);
  }

  .shopinfo-box_wrap {
    flex-direction: column;
    margin-top: calc(35vw / 390* 100);
  }

  .shopinfo-box_wrap_left {
    width: calc(323vw / 390* 100);
    margin: auto;
    padding-bottom: calc(15vw / 390* 100);
  }

  .shopinfo-box_wrap_right {
    width: 100%;
    aspect-ratio: 42/24;
  }

  .shopinfo-box_wrap_logo {
    width: calc(283vw / 390* 100);
    margin-bottom: calc(25vw / 390* 100);
  }

  .shopinfo-box_wrap_tbl {
    font-size: calc(14vw / 390* 100);
  }

  .shopinfo-box_wrap_tbl__headline {
    width: calc(85vw / 390* 100);
  }

  .shopinfo-box_wrap_tbl__cell {
    padding-bottom: 1.3em;
  }

  .shopinfo-box_wrap_tbl__cell_red {
    padding-top: 0.6em;
    font-size: calc(11vw / 390* 100);
  }

}

/* contact-section */
.contact-box {
  margin: 0;
  padding: calc(55vw / 1440* 100) 0;
}

.contact-txt {
  position: relative;
  display: block;
  text-align: center;
  margin: auto;
  width: calc(300vw / 1440* 100);
  font-weight: 600;
  font-size: calc(20vw / 1440* 100);
  margin-bottom: 1.75em;
}

.contact-txt::before {
  position: absolute;
  content: "";
  display: block;
  background-image: url(../image/common/contact-txt_bf.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: calc(30vw / 1440* 100);
  height: calc(38vw / 1440* 100);
  top: 50%;
  left: calc(-5vw / 1440* 100);
  transform: translateY(-50%);
}

.contact-txt::after {
  position: absolute;
  content: "";
  display: block;
  background-image: url(../image/common/contact-txt_af.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: calc(30vw / 1440* 100);
  height: calc(38vw / 1440* 100);
  top: 50%;
  right: calc(-5vw / 1440* 100);
  transform: translateY(-50%);
}

.contact-btn {
  position: relative;
  background-color: #FF559F;
  color: #FCFFAF;
  text-align: center;
  font-weight: 600;
  line-height: 1;
  font-size: calc(26vw / 1440* 100);
  display: block;
  margin: 0 auto;
  width: calc(477vw /1440*100);
  padding: 1.3em;
  border-radius: 2em;
}

.contact-btn::after {
  position: absolute;
  content: "";
  display: block;
  background-image: url(../image/common/icon_arrow_yerrow.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: calc(25vw / 1440* 100);
  height: calc(25vw / 1440* 100);
  top: 50%;
  right: calc(110vw / 1440* 100);
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {

  .contact-box {
    margin: 0;
    padding: calc(50vw / 390* 100) 0;
  }

  .contact-txt {
    width: calc(246vw / 390* 100);
    font-size: calc(15vw / 390* 100);
    margin-bottom: 1.9em;
  }

  .contact-txt::before {
    width: calc(30vw / 390* 100);
    height: calc(38vw / 390* 100);
    left: calc(-6vw / 390* 100);
  }

  .contact-txt::after {
    width: calc(30vw / 390* 100);
    height: calc(38vw / 390* 100);
    right: calc(-6vw / 390* 100);
  }

  .contact-btn {
    font-size: calc(20vw / 390* 100);
    width: calc(313vw /390*100);
    padding: 1.6em;
  }

  .contact-btn::after {
    width: calc(25vw / 390* 100);
    height: calc(25vw / 390* 100);
    right: calc(60vw / 390* 100);
  }
}

/****************************************
	2. 体験ダイビングページ
*****************************************/

/* experience-section */
.experience-box1 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto 0;
  padding: calc(85vw / 1440* 100) 0 calc(55vw / 1440* 100);
  width: calc(960vw /1440*100);
}

.experience-box1_left_area {
  width: calc(420vw / 1440* 100);
}

.experience-box1_left_area_ttl {
  background-color: #00A6FF;
  color: #fff;
  text-align: center;
  line-height: 1;
  font-weight: 600;
  margin: 0;
  font-size: calc(22vw / 1440* 100);
  padding: calc(14vw / 1440* 100) 0;
}

.experience-box1_right_area {
  width: calc(480vw / 1440* 100);
}

.experience-box1_right_area_ttl {
  font-size: calc(24vw / 1440* 100);
  font-weight: 600;
  padding-left: 0.8em;
  line-height: 2;
  border-left: solid calc(9vw / 1440* 100) #00A6FF;
}

.experience-box1_right_area_txt {
  font-size: calc(16vw / 1440* 100);
  margin-top: 1em;
  padding-left: 2em;
  line-height: 1.8;
}

.experience-box2 {
  margin: 0 auto;
  padding-bottom: calc(17vw / 1440* 100);
  width: calc(960vw /1440*100);
}

.experience-box2_ttl {
  font-size: calc(24vw / 1440* 100);
  font-weight: 600;
  padding-left: 0.8em;
  line-height: 2;
  border-left: solid calc(9vw / 1440* 100) #00A6FF;
}

.experience-box2_sub_ttl {
  font-weight: 600;
  font-size: calc(18vw / 1440* 100);
  margin-top: 0.7em;
  padding-left: 1.6em;
  line-height: 1.8;
}

.experience-box2_txt {
  font-size: calc(16vw / 1440* 100);
  margin-bottom: 1.5em;
  padding-left: 1.8em;
  line-height: 1.45;
}

.experience-box3 {
  margin: 0 auto;
  padding-bottom: calc(100vw / 1440* 100);
  width: calc(960vw /1440*100);
}

.experience-box3_ttl {
  font-size: calc(24vw / 1440* 100);
  font-weight: 600;
  padding-left: 0.8em;
  line-height: 2;
  border-left: solid calc(9vw / 1440* 100) #00A6FF;
}

.experience-box3_wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: calc(30vw / 1440* 100);
}

.experience-box3_wrap_item {
  width: calc(300vw / 1440* 100);
}

.experience-box3_wrap_item_ttl {
  font-weight: 600;
  font-size: calc(17vw / 1440* 100);
  line-height: 1.3;
  padding: 1em 0 0.5em;
}

.experience-box3_wrap_item_txt {
  line-height: 1.6;
  font-size: calc(16vw / 1440* 100);
}

@media screen and (max-width: 767px) {
  .experience-box1 {
    width: 100%;
    flex-direction: column;
    padding: calc(35vw / 390* 100) 0 calc(35vw / 390* 100);
  }

  .experience-box1_left_area {
    width: 100%;
    margin-bottom: calc(35vw / 390* 100);
  }

  .experience-box1_left_area_ttl {
    font-size: calc(20vw / 390* 100);
    padding: 0.7em 0;
  }

  .experience-box1_right_area {
    margin: auto;
    width: calc(350vw / 390* 100);
  }

  .experience-box1_right_area_ttl {
    font-size: calc(18vw / 390* 100);
    font-weight: 600;
    padding-left: 1.0em;
    line-height: 2.2;
    border-left: solid calc(9vw / 390* 100) #00A6FF;
  }

  .experience-box1_right_area_txt {
    font-size: calc(14vw / 390* 100);
    margin-top: 1.0em;
    padding-left: 2.1em;
    line-height: 1.3;
  }

  .experience-box2 {
    padding-bottom: calc(20vw / 390* 100);
    width: calc(350vw /390*100);
  }

  .experience-box2_ttl {
    font-size: calc(18vw / 390* 100);
    font-weight: 600;
    padding-left: 1.0em;
    line-height: 2.2;
    border-left: solid calc(9vw / 390* 100) #00A6FF;
  }

  .experience-box2_sub_ttl {
    font-size: calc(14vw / 390* 100);
    margin-top: 1em;
    padding-left: 2em;
    line-height: 1.3;
  }

  .experience-box2_txt {
    font-size: calc(14vw / 390* 100);
    margin-top: 0.7em;
    margin-bottom: 2em;
    padding-left: 2.1em;
    line-height: 1.3;
  }

  .experience-box3 {
    padding-bottom: calc(45vw / 390* 100);
    width: calc(350vw /390*100);
  }

  .experience-box3_ttl {
    font-size: calc(18vw / 390* 100);
    padding-left: 1.0em;
    line-height: 2.2;
    border-left: solid calc(9vw / 390* 100) #00A6FF;
  }

  .experience-box3_wrap {
    flex-direction: column;
    margin-top: calc(22vw / 390* 100);
  }

  .experience-box3_wrap_item {
    width: calc(320vw / 390* 100);
    margin-left: auto;
  }

  .experience-box3_wrap_item:not(:last-child) {
    padding-bottom: calc(27vw / 390* 100);
  }

  .experience-box3_wrap_item_ttl {
    font-size: calc(14vw / 390* 100);
    line-height: 1.3;
    padding: 1em 0 0.5em;
  }

  .experience-box3_wrap_item_txt {
    line-height: 1.5;
    font-size: calc(14vw / 390* 100);
  }
}

/* 料金表 */
.experience_price-box {
  margin: 0 auto;
  padding-bottom: calc(65vw / 1440* 100);
  width: calc(960vw /1440*100);
}

.experience_price-section_ttl {
  text-align: center;
  color: #00A6FF;
  line-height: 0.9;
  font-size: calc(33vw / 1440* 100);
}

.experience_price-section_ttl_sub {
  font-size: calc(20vw / 1440* 100);
  font-weight: 300;
}

.experience_price-tbl {
  text-align: center;
  width: 100%;
  margin-top: calc(60vw / 1440* 100);
}

.experience_price-tbl__headline {
  box-sizing: border-box;
  color: #FCFFAF;
  background-color: #0052B0;
  line-height: 1.5;
  font-size: calc(22vw / 1440* 100);
  border-right: solid calc(20vw / 1440* 100) #fff;
  border-left: solid calc(20vw / 1440* 100) #fff;
}

.experience_price-tbl__headline:nth-child(1) {
  width: calc(250vw / 1440* 100);
  border-left: none;
}

.experience_price-tbl__headline:nth-child(2) {
  width: calc(220vw / 1440* 100);
}

.experience_price-tbl__headline:nth-child(3) {
  width: calc(155vw / 1440* 100);
}

.experience_price-tbl__headline:nth-child(4) {
  width: calc(258vw / 1440* 100);
  border-right: none;
}

.experience_price-tbl__cell {
  font-weight: 600;
  line-height: 1.3;
  font-size: calc(18vw / 1440* 100);
  padding: 0.85em 0;
  border-bottom: solid calc(1vw / 1440* 100) #828282;
}

@media screen and (max-width: 767px) {

  .experience_price-box {
    margin: 0 auto calc(20vw / 390* 100);
    width: calc(323vw /390*100);
  }

  .experience_price-section_ttl {
    font-size: calc(26vw / 390* 100);
  }

  .experience_price-section_ttl_sub {
    font-size: calc(16vw / 390* 100);
    font-weight: 300;
  }

  .experience_price-tbl {
    text-align: center;
    width: 100%;
    margin-top: calc(35vw / 390* 100);
  }

  .experience_price-tbl__headline {
    font-size: calc(12vw / 390* 100);
    border-right: solid calc(7vw / 390* 100) #fff;
    border-left: solid calc(7vw / 390* 100) #fff;
    line-height: 1.7;
  }

  .experience_price-tbl__headline:nth-child(1) {
    width: calc(113vw / 390* 100);
  }

  .experience_price-tbl__headline:nth-child(2) {
    width: calc(77vw / 390* 100);
  }

  .experience_price-tbl__headline:nth-child(3) {
    width: calc(33vw / 390* 100);
  }

  .experience_price-tbl__headline:nth-child(4) {
    width: calc(65vw / 390* 100);
  }

  .experience_price-tbl__cell {
    padding: 1em 0;
    font-size: calc(14vw / 390* 100);
    border-bottom: solid calc(1vw / 390* 100) #828282;
  }
}