@charset "UTF-8";
/* カラー設定
=========================================== */
* {
  color: #000000;
}

/* フォント設定
=========================================== */
.noto {
  font-family: "Noto Sans JP", "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 400;
}

.roboto {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}

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

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

* {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  line-height: unset;
}

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

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

html {
  font-size: 0.732vw;
}
@media (max-width: 767px) {
  html {
    font-size: 2.667vw;
  }
}

p {
  font-size: 1.6rem;
  font-weight: 600;
}
p.note {
  font-size: 1.2rem;
}

a {
  display: inline-block;
  text-decoration: none;
  color: #000000;
  transition: 0.3s all;
}
a:hover, a:link, a:active {
  text-decoration: none;
}
a:hover {
  transition: 0.3s all;
}

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

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

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

h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.8;
}

.text_right {
  text-align: right;
}

span {
  color: inherit;
  font-size: inherit;
  font-family: inherit;
}

/* container
=========================================== */
.container {
  width: 73.2064421669vw;
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 767px) {
  .container {
    width: 90%;
    max-width: none;
  }
}

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

@media (min-width: 768px) {
  .sp-only1 {
    display: none !important;
  }
}

.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;
  }
}

/* font-size
=========================================== */
body,
p {
  font-size: clamp(1rem, 1.6rem, 20px);
  line-height: 2.2;
  letter-spacing: 0.04em;
  font-weight: 600;
}
@media (max-width: 767px) {
  body,
  p {
    font-size: 1.4rem;
  }
}

/* iOS
=========================================== */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  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.link {
  color: #000000;
  display: inline-block;
  text-decoration: underline;
  text-underline-offset: 0.2928257687vw;
  cursor: pointer;
}
@media (hover: hover) {
  a.link:hover {
    opacity: 0.6;
  }
}

/* btn
=========================================== */
.btn_round {
  background: #00a199;
  max-width: 280px;
  padding: 15px 0;
  display: block;
  border-radius: 30px;
  position: relative;
}
.btn_round span {
  text-align: center;
  margin: auto;
  display: block;
  color: #fff;
  line-height: 1.6;
  font-weight: 600;
  font-size: clamp(1rem, 1.6rem, 20px);
}
@media only screen and (max-width: 767px) {
  .btn_round span {
    font-size: 1.4rem;
  }
}
.btn_round span:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 10%;
  margin: auto;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: translate(0, -50%) rotate(45deg);
  transform: translate(0, -50%) rotate(45deg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (hover: hover) {
  .btn_round:hover {
    background: #f2e33c;
  }
  .btn_round:hover span:after {
    right: 8%;
  }
}

button {
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;
  cursor: pointer;
}

/* flexbox
=========================================== */
.flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.flex.center {
  justify-content: space-between;
}

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

.flex.reverse {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 767px) {
  .flex.reverse {
    flex-direction: row;
  }
}

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

/* grid
=========================================== */
.grid {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 767px) {
  .grid {
    grid-template-rows: 2fr;
    grid-template-columns: 1fr;
  }
}

/* section
=========================================== */
section {
  padding: 8.78477306vw 0;
}
@media only screen and (max-width: 767px) {
  section {
    padding: 16vw 0;
  }
}

main {
  padding-top: 100px;
}
@media (max-width: 767px) {
  main {
    padding-top: 60px;
  }
}

/* header
=========================================== */
#header {
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease 0s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border-bottom: 5px solid #00a199;
  background: #fff;
}
@media (max-width: 767px) {
  #header {
    border-bottom: 2px solid #00a199;
  }
}

.header_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 0 4.39238653vw;
  width: 100%;
  height: 100px;
}
@media (max-width: 767px) {
  .header_wrapper {
    padding: 0 5%;
    height: 60px;
  }
}

.header_logo {
  display: flex;
  font-weight: bold;
  align-items: center;
}
.header_logo a {
  display: flex;
  align-items: end;
}
.header_logo a .logo_company {
  width: 150px;
}
@media (max-width: 767px) {
  .header_logo a .logo_company {
    width: 90px;
  }
}
.header_logo a img {
  width: 100%;
}
.header_logo a .logo_50th {
  width: 118px;
  margin-left: 22px;
  margin-bottom: -3px;
}
@media (max-width: 767px) {
  .header_logo a .logo_50th {
    width: 71px;
    margin-left: 13px;
    margin-bottom: -2px;
  }
}
.header_logo a .logo_50th img {
  width: 100%;
}

.header_nav_wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.5);
  transition: 0.3s all;
  padding: clamp(1rem, 10.980966325vw, 200px) 0 8.78477306vw;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .header_nav_wrapper {
    padding: 24vw 0 10.6666666667vw;
  }
}
.header_nav_wrapper.active {
  visibility: visible;
  opacity: 1;
  z-index: 1000;
}
.header_nav_wrapper .header_nav_box {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  max-width: 360px;
  transform: translateX(100%);
  background-color: #fff;
  transition: ease 0.4s;
  display: flex;
  border-radius: 0 0 0 1.756954612vw;
}
@media (max-width: 767px) {
  .header_nav_wrapper .header_nav_box {
    flex-direction: column;
    padding: 2.1333333333vw 0 5.3333333333vw;
  }
}
.header_nav_wrapper .header_nav_box.active {
  transform: translateX(0);
}
.header_nav_wrapper .header_nav_box .header_nav {
  width: 100%;
  order: 1;
  padding: 1.4641288433vw;
}
@media (max-width: 767px) {
  .header_nav_wrapper .header_nav_box .header_nav {
    width: 100%;
    order: 1;
    padding: 5.3333333333vw;
  }
}
.header_nav_wrapper .header_nav_box .header_nav a[target=_blank] {
  background-image: url(/common/img/icon_tab_main.svg);
  background-repeat: no-repeat;
  background-position: right;
  background-size: 0.8052708638vw 0.878477306vw;
  padding-right: 1.317715959vw;
}
@media (max-width: 767px) {
  .header_nav_wrapper .header_nav_box .header_nav a[target=_blank] {
    background-size: 3.2vw 3.2vw;
    padding-right: 4.8vw;
  }
}
.header_nav_wrapper .header_nav_box .header_nav .nav_menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.196193265vw;
  margin-bottom: clamp(1rem, 2.9282576867vw, 40px);
}
@media (max-width: 767px) {
  .header_nav_wrapper .header_nav_box .header_nav .nav_menu {
    flex-direction: column;
    margin-bottom: 10.6666666667vw;
    gap: 8vw;
  }
}
.header_nav_wrapper .header_nav_box .header_nav .nav_menu .header_nav_logo {
  width: 150px;
}
.header_nav_wrapper .header_nav_box .header_nav .nav_menu ul li {
  line-height: 1.2;
  margin-bottom: clamp(1rem, 1.1713030747vw, 16px);
}
@media (max-width: 767px) {
  .header_nav_wrapper .header_nav_box .header_nav .nav_menu ul li {
    margin-bottom: 3.7333333333vw;
  }
}
.header_nav_wrapper .header_nav_box .header_nav .nav_menu ul li a {
  position: relative;
  font-size: clamp(1rem, 1.6rem, 16px);
  font-weight: 600;
  padding-left: 1.1713030747vw;
}
@media (hover: hover) {
  .header_nav_wrapper .header_nav_box .header_nav .nav_menu ul li a:hover {
    color: #f2e33c;
  }
}
@media (max-width: 767px) {
  .header_nav_wrapper .header_nav_box .header_nav .nav_menu ul li a {
    font-size: 1.4rem;
    padding-left: 3.7333333333vw;
  }
}
.header_nav_wrapper .header_nav_box .header_nav .nav_menu ul li a:before {
  content: "";
  border: 0;
  border-top: solid 0.1464128843vw #00a199;
  border-right: solid 0.1464128843vw #00a199;
  display: inline-block;
  width: 0.2928257687vw;
  height: 0.2928257687vw;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(45deg);
}
@media (max-width: 767px) {
  .header_nav_wrapper .header_nav_box .header_nav .nav_menu ul li a:before {
    border-top: solid 0.2666666667vw #00a199;
    border-right: solid 0.2666666667vw #00a199;
    width: 1.0666666667vw;
    height: 1.0666666667vw;
  }
}
.header_nav_wrapper .header_nav_box .header_nav .nav_menu ul li:last-child {
  margin-bottom: 0;
}
.header_nav_wrapper .header_nav_box .header_nav .sub_menu {
  margin-bottom: clamp(1rem, 2.9282576867vw, 40px);
}
@media (max-width: 767px) {
  .header_nav_wrapper .header_nav_box .header_nav .sub_menu {
    margin-bottom: 10.6666666667vw;
  }
}
.header_nav_wrapper .header_nav_box .header_nav .sub_menu ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  row-gap: clamp(1rem, 0.5856515373vw, 8px);
  column-gap: clamp(1rem, 1.4641288433vw, 20px);
}
@media (max-width: 767px) {
  .header_nav_wrapper .header_nav_box .header_nav .sub_menu ul {
    row-gap: 3.7333333333vw;
    column-gap: 4.2666666667vw;
  }
}
.header_nav_wrapper .header_nav_box .header_nav .sub_menu ul li {
  line-height: 1.2;
}
.header_nav_wrapper .header_nav_box .header_nav .sub_menu ul li a {
  font-size: clamp(1rem, 1.4rem, 14px);
  font-weight: 600;
  line-height: 1.2;
}
@media (hover: hover) {
  .header_nav_wrapper .header_nav_box .header_nav .sub_menu ul li a:hover {
    color: #f2e33c;
  }
}
@media (max-width: 767px) {
  .header_nav_wrapper .header_nav_box .header_nav .sub_menu ul li a {
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  .header_nav_wrapper .header_nav_box .header_nav .btn_area {
    margin-bottom: 5.3333333333vw;
  }
}

/*humburger
=========================================== */
.btn_open {
  position: relative;
  display: block;
  cursor: pointer;
  width: 60px;
  height: 60px;
  z-index: 1001;
  transition: 0.3s all;
}
@media (max-width: 767px) {
  .btn_open {
    width: 40px;
    height: 40px;
  }
}
@media (hover: hover) {
  .btn_open:hover {
    opacity: 0.7;
    transition: 0.3s all;
  }
}
.btn_open img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: contain;
}
.btn_open .btn_close {
  visibility: hidden;
  opacity: 0;
}
.btn_open.active .btn_menu {
  visibility: hidden;
  opacity: 0;
}
.btn_open.active .btn_close {
  visibility: visible;
  opacity: 1;
}

/* MV
=========================================== */
#mv {
  position: relative;
  width: 100%;
  aspect-ratio: 1080/400;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  #mv {
    width: 100%;
    aspect-ratio: 1080/400;
  }
}
#mv .kumo01 {
  position: absolute;
  top: 80px;
  left: 50px;
  z-index: 5;
  width: 15.5929721816vw;
  height: 4.831625183vw;
}
@media only screen and (max-width: 767px) {
  #mv .kumo01 {
    width: 17.6vw;
    height: 5.8666666667vw;
    top: 20px;
    left: 10px;
  }
}
#mv .kumo02 {
  position: absolute;
  top: 70px;
  right: 50px;
  z-index: 5;
  width: 15.5929721816vw;
  height: 4.831625183vw;
}
@media only screen and (max-width: 767px) {
  #mv .kumo02 {
    width: 17.6vw;
    height: 5.8666666667vw;
    top: 20px;
    right: 10px;
  }
}
#mv .mv_top {
  width: 100%;
  aspect-ratio: 1080/212;
}
#mv .mv_text {
  width: 14.6412884334vw;
}
@media only screen and (max-width: 767px) {
  #mv .mv_text {
    width: 40vw;
  }
}
#mv .mv_logo {
  width: 7.3206442167vw;
  margin-top: -5.8565153734vw;
  margin-bottom: 2.196193265vw;
}
@media only screen and (max-width: 767px) {
  #mv .mv_logo {
    width: 16vw;
    margin-top: 0;
    margin-bottom: 8vw;
  }
}
#mv .mv_town {
  width: 100%;
  aspect-ratio: 1080/152;
  margin-top: 3.6603221083vw;
}
@media only screen and (max-width: 767px) {
  #mv .mv_town {
    margin-top: 13.3333333333vw;
  }
}

/* アニメーション
=========================================== */
.scaleUp, .scaleUp_item, .fadeIn, .fadeIn_item {
  position: relative;
  opacity: 0;
}

/* ふわふわアニメーション */
/* 縦のふわふわ指定 */
.fuwafuwa01 {
  animation: fuwafuwa01 2.8s infinite ease-in-out;
}

/* 横のふわふわ指定 */
.fuwafuwa02 {
  animation: fuwafuwa02 2.5s infinite ease-in-out;
}

/* 縦のふわふわの動き */
@keyframes fuwafuwa01 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}
/* 横のふわふわの動き */
@keyframes fuwafuwa02 {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(30px);
  }
}
/* footer
=========================================== */
#footer {
  background-color: #00a199;
  color: #fff;
  padding: 8.78477306vw 0 2.9282576867vw;
  position: relative;
}
@media (max-width: 767px) {
  #footer {
    padding: 10.6666666667vw 0;
  }
}
#footer p, #footer a, #footer span {
  color: #fff;
}
#footer .footer_bottom {
  margin-bottom: 7.3206442167vw;
}
@media (max-width: 767px) {
  #footer .footer_bottom {
    margin-bottom: 16vw;
  }
}
#footer .footer_bottom ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  #footer .footer_bottom ul {
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 5.3333333333vw 2%;
  }
}
#footer .footer_bottom ul li {
  padding-left: 1.4641288433vw;
  padding-right: 1.4641288433vw;
  border-right: solid 1px #fff;
  line-height: 1;
}
@media (max-width: 767px) {
  #footer .footer_bottom ul li {
    padding: 0;
    width: 48%;
    border: none;
  }
}
#footer .footer_bottom ul li:first-child {
  padding-left: 0;
}
#footer .footer_bottom ul li:last-child {
  padding-right: 0;
  border-right: none;
}
#footer .footer_bottom ul li a {
  font-size: clamp(1rem, 1.4rem, 18px);
}
@media (max-width: 767px) {
  #footer .footer_bottom ul li a {
    font-size: 1.3rem;
  }
}
@media (hover: hover) {
  #footer .footer_bottom ul li a:hover {
    opacity: 0.6;
  }
}
#footer .copy {
  text-align: center;
}
#footer .copy small {
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
}
#footer a[target=_blank] {
  background-image: url(/common/img/icon_tab_white.svg);
  background-repeat: no-repeat;
  background-position: right;
  background-size: 0.878477306vw 0.878477306vw;
  padding-right: 1.317715959vw;
}
@media (max-width: 767px) {
  #footer a[target=_blank] {
    background-size: 3.2vw 3.2vw;
    padding-right: 4.8vw;
  }
}

/* pagetop
=========================================== */
#page-top {
  right: 60px;
  position: absolute;
  z-index: 100;
}
#page-top a {
  display: block;
}
#page-top a:before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #00a199;
}
#page-top a:after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 20px;
  left: 18px;
  width: 9px;
  height: 9px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
}

/* accordion
=========================================== */
.js-accordion-title {
  cursor: pointer;
  position: relative;
  padding-right: 2.196193265vw;
}
.js-accordion-title:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.196193265vw;
  width: 1.0980966325vw;
  height: 0.1464128843vw;
  /*縦線に*/
  transform: rotate(90deg);
  background: #333;
  transition: all 0.3s ease-in-out;
}
.js-accordion-title:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.196193265vw;
  /*横線*/
  width: 1.0980966325vw;
  height: 0.1464128843vw;
  background: #333;
  transition: all 0.2s ease-in-out;
}

.js-accordion-title.open:before {
  transform: rotate(180deg);
}
.js-accordion-title.open:after {
  opacity: 0;
}

.accordion-content {
  display: none;
}

@media only screen and (max-width: 767px) {
  .js-accordion-title_sp {
    cursor: pointer;
    position: relative;
    padding-right: 10.6666666667vw;
  }
  .js-accordion-title_sp:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 18px;
    height: 2px;
    /*縦線に*/
    transform: rotate(90deg);
    background: #fff;
    transition: all 0.3s ease-in-out;
  }
  .js-accordion-title_sp:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    /*横線*/
    width: 18px;
    height: 2px;
    background: #fff;
    transition: all 0.2s ease-in-out;
  }
  .accordion-content_sp {
    display: none;
  }
  .js-accordion-title_sp.open:before {
    transform: rotate(180deg);
  }
}
/* 共通
=========================================== */
section {
  padding: 11.7130307467vw 0;
}
@media only screen and (max-width: 767px) {
  section {
    padding: 16vw 0;
  }
}

section:first-of-type {
  padding: 5.8565153734vw 0;
}
@media only screen and (max-width: 767px) {
  section:first-of-type {
    padding: 21.3333333333vw 0;
  }
}

.section_title_bg {
  background-image: url(/common/img/section_title_bg.svg);
  background-repeat: no-repeat;
  background-position: right bottom;
  padding-bottom: 1.8301610542vw;
  display: inline-block;
}
@media (max-width: 767px) {
  .section_title_bg {
    padding-bottom: 6.6666666667vw;
  }
}
.section_title_bg .lato {
  display: block;
  color: #00a199;
  font-size: clamp(1rem, 5rem, 50px);
  line-height: 1;
  margin-bottom: 0.3660322108vw;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .section_title_bg .lato {
    font-size: 2.4rem;
    margin-bottom: 1.3333333333vw;
  }
}
.section_title_bg .ja {
  font-size: clamp(1rem, 2.4rem, 28px);
  font-weight: 700;
  color: #00a199;
}
@media (max-width: 767px) {
  .section_title_bg .ja {
    font-size: 1.4rem;
  }
}

.section_title_line {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #00a199;
  gap: 1.4641288433vw;
  padding-bottom: 2.196193265vw;
  margin-bottom: 2.9282576867vw;
}
@media only screen and (max-width: 767px) {
  .section_title_line {
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    padding-bottom: 4vw;
    margin-bottom: 5.3333333333vw;
  }
}
.section_title_line .lato {
  display: block;
  color: #00a199;
  font-size: clamp(1rem, 5rem, 50px);
  line-height: 1;
  margin-bottom: 0.3660322108vw;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .section_title_line .lato {
    font-size: 2.4rem;
    margin-bottom: 1.3333333333vw;
  }
}
.section_title_line .ja {
  font-size: clamp(1rem, 2.4rem, 28px);
  font-weight: 700;
  color: #00a199;
}
@media (max-width: 767px) {
  .section_title_line .ja {
    font-size: 1.4rem;
  }
}

/* table
=========================================== */
table {
  width: 100%;
}
table th, table td {
  text-align: left;
  padding: 2.3426061493vw 0;
  vertical-align: top;
  display: revert;
}
@media (max-width: 767px) {
  table th, table td {
    display: block;
  }
}
table th {
  width: 17.5695461201vw;
}
@media (max-width: 767px) {
  table th {
    width: 100%;
    padding: 5.3333333333vw 0 1.6vw;
  }
}
table td {
  width: 48.3162518302vw;
}
@media (max-width: 767px) {
  table td {
    width: 100%;
    padding: 0 0 5.3333333333vw;
  }
}
table td ul {
  margin-bottom: 1em;
}
table tr {
  border-bottom: solid 1px #EAEAEA;
}
table tr:last-child {
  border-bottom: none;
}
table tr:last-child th, table tr:last-child td {
  padding-bottom: 0;
}

/* service_list
=========================================== */
.service_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7320644217vw;
}
@media (max-width: 767px) {
  .service_list {
    gap: 2.6666666667vw;
  }
}
.service_list li {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.service_list li a {
  display: block;
  padding: 0.7320644217vw 0;
}
@media (max-width: 767px) {
  .service_list li a {
    padding: 5.3333333333vw 0;
  }
}
.service_list li a span {
  text-align: center;
  margin: auto;
  display: block;
  color: #000000;
  line-height: 1.6;
  font-weight: 600;
  font-size: clamp(1rem, 1.6rem, 20px);
}
@media only screen and (max-width: 767px) {
  .service_list li a span {
    font-size: 1.4rem;
  }
}
.service_list li a span:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 10%;
  margin: auto;
  width: 6px;
  height: 6px;
  border-top: 2px solid #000000;
  border-right: 2px solid #000000;
  -webkit-transform: translate(0, -50%) rotate(45deg);
  transform: translate(0, -50%) rotate(45deg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (hover: hover) {
  .service_list li a:hover {
    background: #f2e33c;
  }
  .service_list li a:hover span:after {
    right: 8%;
  }
}
.service_list li:nth-child(1) a {
  background: #fee898;
}
.service_list li:nth-child(2) a {
  background: #f6c0d7;
}
.service_list li:nth-child(3) a {
  background: #cae093;
}
.service_list li:nth-child(4) a {
  background: #b9e3f9;
}

/* 50周年バナー  */
[id="50th_banner"] .bnr_pc {
  display: block;
  width: 168px;
  position: fixed;
  top: 125px;
  right: 0;
  box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.2);
  border-radius: 10px 0 0 10px;
  z-index: 10;
}
[id="50th_banner"] .bnr_pc a {
  display: block;
}
[id="50th_banner"] .bnr_sp {
  display: none;
}
@media (max-width: 767px) {
  [id="50th_banner"] .bnr_pc {
    display: none;
  }
  [id="50th_banner"] .bnr_sp {
    display: block;
    width: 100%;
    position: fixed;
    bottom: 10px;
    z-index: 10;
  }
  [id="50th_banner"] .bnr_sp a {
    display: block;
    width: 60%;
    max-width: 297px;
    margin: 0 auto;
    box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
  }
}

/*# sourceMappingURL=common.css.map */
