@charset "UTF-8";
/*
    リセット
*/
@import url("reset.css");
/*
    body,html,全体
*/
body, html {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

a, a:hover {
  text-decoration: none;
  color: #555555;
}

img {
  width: 100%;
  vertical-align: bottom;
}

ol, ul, li {
  list-style-type: none;
  padding: 0;
}

.webfont_oxygen {
  font-family: "Oxygen", sans-serif;
  font-weight: 700;
  font-style: normal;
  transform: scale(1, 1.1);
  letter-spacing: 1px;
}

/*
    ユーティリティ
*/
.for_sp {
  display: none !important;
}

.for_pc {
  display: block !important;
}

.for_sp_il {
  display: none !important;
}

.for_pc_il {
  display: inline !important;
}

@media screen and (max-width: 768px) {
  .for_sp {
    display: block !important;
  }
  .for_pc {
    display: none !important;
  }
  .for_sp_il {
    display: inline !important;
  }
  .for_pc_il {
    display: none !important;
  }
}
/*
    共有パーツ
*/
.page-wrapper {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 0;
}
.page-wrapper > section {
  position: relative;
  width: 100%;
}

.section_inner {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0;
}

a.sns_btn {
  display: flex;
  align-items: center;
  width: 350px;
  height: 68px;
  padding-left: 76px;
  background-color: #fff;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
  background-image: url(https://cdn.getshifter.co/be7ed2e8e82138bc0a01637baba83e9585cb0b44/uploads/2024/09/icon_line.webp);
  background-repeat: no-repeat;
  background-size: 35px auto;
  background-position: left 31px center;
  font-size: 18px;
  border-radius: 100px;
  color: #4D4D4D;
  line-height: 1;
  letter-spacing: 1px;
  transition: 0.3s;
}

a.float_btn {
  position: fixed;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

a.btn_common {
  display: block;
  font-size: min(1.3333333333vw, 16px);
  line-height: 3em;
  height: 3em;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  padding: 0 5em;
  border: 1px solid #4D4D4D;
  border-radius: 2.5em;
  margin: auto;
  position: relative;
}
a.btn_common::after {
  content: "";
  display: block;
  position: absolute;
  right: 1.5em;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 0.6em;
  height: 0.6em;
  border: 1.5px solid;
  border-color: #000 #000 transparent transparent;
  transform-origin: center center;
}
@media screen and (max-width: 768px) {
  a.btn_common {
    font-size: min(4.2666666667vw, 16px);
  }
}

@media screen and (max-width: 768px) {
  a.sns_btn {
    width: 93.3333333333vw;
    height: 18.1333333333vw;
    padding-left: 20.2666666667vw;
    background-size: 9.3333333333vw auto;
    background-position: left 8.2666666667vw center;
    font-size: 4.8vw;
  }
  a.float_btn {
    bottom: 4%;
    z-index: 100;
  }
}
/*
    ヘッダー ロゴ／ハンバーガーマーク
*/
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  pointer-events: all;
  height: 85px;
  transition: all 1s ease;
}

.header.hide {
  opacity: 0;
  pointer-events: none;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 30px;
  margin: 0 auto;
  box-sizing: border-box;
  width: 100%;
}

.header-logo {
  width: 147px;
}
.header-logo img {
  width: 100%;
}
.header-logo.mederi {
  width: 112px;
}

.header-right {
  display: flex;
  align-items: center;
  pointer-events: auto !important;
}
.header-right .header-right-main {
  height: 20px;
}
.header-right .header-right-main .header-toogle {
  padding: 0;
  cursor: pointer;
  background-color: transparent;
  border: none;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.header-right .header-right-main .header-toogle__line {
  display: block;
  width: 30px;
  height: 2px;
  margin-bottom: 7px;
  background-color: #333;
  border-radius: 30px;
  transition: all 0.3s;
}
.header-right .header-right-main .header-toogle__line {
  background-color: #fff;
}

.header.hide .header-right {
  pointer-events: none !important;
}

.logo_wh {
  display: block;
}

.logo_bl {
  display: none;
}

.header.leavetop .logo_wh {
  display: none;
}
.header.leavetop .logo_bl {
  display: block;
}
.header.leavetop .header-right .header-toogle__line {
  background-color: #333;
}

@media screen and (max-width: 767px) {
  .header {
    height: 66px;
  }
  .header-container {
    width: 100%;
  }
  .header.leavetop {
    background: #fff;
  }
}
/*
    ヘッダー　ナビゲーションコンテナ
*/
@media only screen and (max-width: 769px) {
  .nav-inner {
    overflow: scroll;
  }
}
nav#main-nav {
  display: block;
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 500;
  pointer-events: all;
  opacity: 1;
  transition: all 1s ease;
  overflow: auto;
  background: #fff;
}

nav#main-nav.hide {
  opacity: 0;
  pointer-events: none;
}

.nav-close {
  position: absolute;
  z-index: 100;
  display: flex;
  align-items: center;
  height: 85px;
  width: 100%;
  height: 66px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
}
.nav-close .nav-close-button {
  position: absolute;
  right: 30px;
  width: 30px;
  height: 20px;
  padding: 0;
  cursor: pointer;
  background-color: transparent;
  border: none;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.nav-close .nav-close-button__line {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: 2px;
  margin-bottom: 7px;
  background: #333;
  border-radius: 30px;
  transition: all 0.3s;
}
.nav-close .nav-close-button__line:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.nav-close .nav-close-button__line:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

nav#main-nav #headernavi_2024_s_style {
  position: absolute;
}

#headernavi_2024_s_style {
  width: 100%;
  position: relative;
  z-index: 10;
  background: #fff;
}
#headernavi_2024_s_style ol, #headernavi_2024_s_style ul, #headernavi_2024_s_style li {
  padding: 0;
  list-style-type: none;
  margin: 0;
}
#headernavi_2024_s_style .headernavi_inner {
  width: 100%;
  max-width: 980px;
  margin: auto;
  padding-top: min(6.1224489796%, 60px);
  padding-bottom: 25px;
}
#headernavi_2024_s_style .headernavi_inner .headernavi_product {
  width: 100%;
  padding-bottom: 2em;
  margin-bottom: 2em;
  border-bottom: 1px solid rgba(112, 112, 112, 0.2);
}
#headernavi_2024_s_style .headernavi_inner .headernavi_product h2.headernavi_product_title {
  width: 175px;
  height: auto;
  margin: 0;
  margin-bottom: 20px;
}
#headernavi_2024_s_style .headernavi_inner .headernavi_product h2.headernavi_product_title img {
  width: 100%;
}
#headernavi_2024_s_style .headernavi_inner .headernavi_product .headernavi_product_list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
#headernavi_2024_s_style .headernavi_inner .headernavi_product .headernavi_product_list li.headernavi_product_column {
  width: 23.4693877551%;
}
#headernavi_2024_s_style .headernavi_inner .headernavi_product .headernavi_product_list li.headernavi_product_column ol.headernavi_product_linklist {
  width: 100%;
  margin-top: 1em;
}
#headernavi_2024_s_style .headernavi_inner .headernavi_product .headernavi_product_list li.headernavi_product_column ol.headernavi_product_linklist li {
  width: 100%;
  color: #6A6A6A;
  text-align: center;
  font-weight: bold;
  font-size: min(1.2244897959vw, 12px);
  line-height: 3em;
}
#headernavi_2024_s_style .headernavi_inner .headernavi_product .headernavi_product_list li.headernavi_product_column ol.headernavi_product_linklist li a {
  color: #6A6A6A;
}
#headernavi_2024_s_style .headernavi_inner .headernavi_product .headernavi_product_list li.headernavi_product_column ol.headernavi_product_linklist li br.spil {
  display: none;
}
#headernavi_2024_s_style .headernavi_inner .headernavi_flexrow {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
#headernavi_2024_s_style .headernavi_inner .headernavi_flexrow .headernavi_service {
  width: 74.4897959184%;
}
#headernavi_2024_s_style .headernavi_inner .headernavi_flexrow .headernavi_for_media {
  width: 17.5510204082%;
}
#headernavi_2024_s_style .headernavi_inner .headernavi_service {
  margin-bottom: 4em;
}
#headernavi_2024_s_style .headernavi_inner .headernavi_service h2 {
  color: #4D4D4D;
  font-weight: bold;
  margin: 0;
  margin-bottom: 15px;
  font-size: min(1.8367346939vw, 18px);
}
#headernavi_2024_s_style .headernavi_inner .headernavi_service .headernavi_service_list {
  display: grid;
  grid-template-areas: "area1 area2 area3 area4" "area1 area5 area6 area7";
  grid-template-columns: 23.4693877551% 23.4693877551% 23.4693877551% 23.4693877551%;
  grid-template-rows: 1fr 1fr;
  justify-content: space-between;
  align-content: space-between;
  row-gap: min(1.3265306122vw, 13px);
}
#headernavi_2024_s_style .headernavi_inner .headernavi_service .headernavi_service_list li {
  margin: 0;
}
#headernavi_2024_s_style .headernavi_inner .headernavi_service .headernavi_service_list .item-1 {
  grid-area: area1;
}
#headernavi_2024_s_style .headernavi_inner .headernavi_service .headernavi_service_list .item-2 {
  grid-area: area2;
}
#headernavi_2024_s_style .headernavi_inner .headernavi_service .headernavi_service_list .item-3 {
  grid-area: area3;
}
#headernavi_2024_s_style .headernavi_inner .headernavi_service .headernavi_service_list .item-4 {
  grid-area: area4;
}
#headernavi_2024_s_style .headernavi_inner .headernavi_service .headernavi_service_list .item-5 {
  grid-area: area5;
}
#headernavi_2024_s_style .headernavi_inner .headernavi_service .headernavi_service_list .item-6 {
  grid-area: area6;
}
#headernavi_2024_s_style .headernavi_inner .headernavi_service .headernavi_service_list .item-7 {
  grid-area: area7;
}
#headernavi_2024_s_style .headernavi_inner .headernavi_for_media {
  display: block;
  align-items: center;
  margin-bottom: 4em;
}
#headernavi_2024_s_style .headernavi_inner .headernavi_for_media h2 {
  color: #4D4D4D;
  font-weight: bold;
  margin: 0;
  margin-bottom: 15px;
  font-size: min(1.8367346939vw, 18px);
}
#headernavi_2024_s_style .headernavi_inner .headernavi_for_media .headernavi_media_list {
  display: block;
  padding-top: 2px;
}
#headernavi_2024_s_style .headernavi_inner .headernavi_for_media .headernavi_media_list li {
  font-size: min(1.2244897959vw, 12px);
  font-weight: bold;
  margin-right: 0em;
  position: relative;
}
#headernavi_2024_s_style .headernavi_inner .headernavi_for_media .headernavi_media_list li a {
  color: #6A6A6A;
  position: relative;
}
#headernavi_2024_s_style .headernavi_inner .headernavi_for_media .headernavi_media_list li a::after {
  display: block;
  content: "";
  background: url(https://cdn.getshifter.co/be7ed2e8e82138bc0a01637baba83e9585cb0b44/uploads/2024/07/icon_link.png);
  background-size: contain;
  width: 9px;
  height: 9px;
  position: absolute;
  right: -36px;
  top: 50%;
  transform: translateY(-50%);
}
#headernavi_2024_s_style .headernavi_inner .headernavi_bottom_line {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#headernavi_2024_s_style .headernavi_inner .headernavi_bottom_line .headernavi_sns ul {
  display: flex;
  align-items: center;
}
#headernavi_2024_s_style .headernavi_inner .headernavi_bottom_line .headernavi_sns ul li:not(:first-child) {
  margin-left: 1.5em;
}
#headernavi_2024_s_style .headernavi_inner .headernavi_bottom_line .headernavi_bottom {
  padding-top: 2px;
}
#headernavi_2024_s_style .headernavi_inner .headernavi_bottom_line .headernavi_bottom ul {
  display: flex;
  justify-content: space-between;
}
#headernavi_2024_s_style .headernavi_inner .headernavi_bottom_line .headernavi_bottom ul li {
  display: flex;
  justify-content: space-between;
}
#headernavi_2024_s_style .headernavi_inner .headernavi_bottom_line .headernavi_bottom ul div {
  display: flex;
  justify-content: space-between;
}
#headernavi_2024_s_style .headernavi_inner .headernavi_bottom_line .headernavi_bottom ul div a {
  display: block;
  font-size: 10px;
  margin-right: 2em;
  padding-right: 2em;
  border-right: 1px solid #4D4D4D;
}
#headernavi_2024_s_style .headernavi_inner .headernavi_bottom_line .headernavi_bottom ul div:last-of-type a:last-of-type {
  border: none;
  margin: 0;
}
#headernavi_2024_s_style .headernavi_inner .headernavi_bottom_line .headernavi_bottom ul p.headernavi_copyright {
  display: block;
  font-size: 10px;
  margin: 0;
  margin-left: 2em;
}
@media screen and (max-width: 768px) {
  #headernavi_2024_s_style .headernavi_inner {
    width: 100%;
    max-width: none;
    margin: auto;
    padding-top: 0;
    padding: 15vw 0 0;
  }
  #headernavi_2024_s_style .headernavi_inner .headernavi_product {
    width: 86%;
    margin: auto;
    margin-bottom: 10vw;
  }
  #headernavi_2024_s_style .headernavi_inner .headernavi_product h2.headernavi_product_title {
    width: 60%;
    max-width: 175px;
    height: auto;
    margin: auto;
    margin-bottom: 5vw;
  }
  #headernavi_2024_s_style .headernavi_inner .headernavi_product h2.headernavi_product_title img {
    width: 100%;
  }
  #headernavi_2024_s_style .headernavi_inner .headernavi_product .headernavi_product_list {
    display: block;
  }
  #headernavi_2024_s_style .headernavi_inner .headernavi_product .headernavi_product_list li.headernavi_product_column {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 5vw;
  }
  #headernavi_2024_s_style .headernavi_inner .headernavi_product .headernavi_product_list li.headernavi_product_column .headernavi_product_img {
    width: 50%;
  }
  #headernavi_2024_s_style .headernavi_inner .headernavi_product .headernavi_product_list li.headernavi_product_column ol.headernavi_product_linklist {
    width: 50%;
    margin-top: 0;
  }
  #headernavi_2024_s_style .headernavi_inner .headernavi_product .headernavi_product_list li.headernavi_product_column ol.headernavi_product_linklist li {
    width: 100%;
    color: #6A6A6A;
    text-align: center;
    font-weight: bold;
    font-size: min(3.2vw, 12px);
    line-height: 1.4em;
    margin-top: 1.2em;
  }
  #headernavi_2024_s_style .headernavi_inner .headernavi_product .headernavi_product_list li.headernavi_product_column ol.headernavi_product_linklist li:first-of-type {
    margin-top: 0;
  }
  #headernavi_2024_s_style .headernavi_inner .headernavi_product .headernavi_product_list li.headernavi_product_column ol.headernavi_product_linklist li a {
    color: #6A6A6A;
  }
  #headernavi_2024_s_style .headernavi_inner .headernavi_product .headernavi_product_list li.headernavi_product_column ol.headernavi_product_linklist li br.spil {
    display: inline !important;
  }
  #headernavi_2024_s_style .headernavi_inner .headernavi_flexrow {
    display: block;
  }
  #headernavi_2024_s_style .headernavi_inner .headernavi_flexrow .headernavi_service {
    width: 86%;
  }
  #headernavi_2024_s_style .headernavi_inner .headernavi_flexrow .headernavi_for_media {
    width: 86%;
  }
  #headernavi_2024_s_style .headernavi_inner .headernavi_service {
    width: 86%;
    margin: auto;
    margin-bottom: 2em;
    padding-bottom: 2em;
    border-bottom: 1px solid #6A6A6A;
  }
  #headernavi_2024_s_style .headernavi_inner .headernavi_service h2 {
    color: #707070;
    font-weight: bold;
    margin: 0;
    margin-bottom: 15px;
    font-size: min(4.8vw, 18px);
  }
  #headernavi_2024_s_style .headernavi_inner .headernavi_service .headernavi_service_list {
    display: block;
  }
  #headernavi_2024_s_style .headernavi_inner .headernavi_service .headernavi_service_list li {
    margin: 0;
    margin-bottom: 5vw;
  }
  #headernavi_2024_s_style .headernavi_inner .headernavi_service .headernavi_service_list li span {
    font-size: min(4vw, 15px);
    font-weight: bold;
    margin-right: 0;
    margin-bottom: 0.5em;
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    color: #6A6A6A;
  }
  #headernavi_2024_s_style .headernavi_inner .headernavi_service .headernavi_service_list li span::after {
    display: block;
    content: "";
    background: url(https://cdn.getshifter.co/be7ed2e8e82138bc0a01637baba83e9585cb0b44/uploads/2024/07/icon_link.png);
    background-size: contain;
    width: 10px;
    height: 10px;
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
  }
  #headernavi_2024_s_style .headernavi_inner .headernavi_service .headernavi_service_list li.item-5 {
    margin-top: 10vw;
  }
  #headernavi_2024_s_style .headernavi_inner .headernavi_for_media {
    display: block;
    width: 86%;
    align-items: center;
    margin: auto;
    margin-bottom: 15vw;
    padding-bottom: 2em;
    border-bottom: 1px solid #6A6A6A;
  }
  #headernavi_2024_s_style .headernavi_inner .headernavi_for_media h2 {
    color: #4D4D4D;
    font-weight: bold;
    margin: 0;
    margin-right: 1.5em;
    font-size: min(4.8vw, 18px);
    margin-bottom: 1em;
  }
  #headernavi_2024_s_style .headernavi_inner .headernavi_for_media .headernavi_media_list {
    display: block;
    padding-top: 2px;
  }
  #headernavi_2024_s_style .headernavi_inner .headernavi_for_media .headernavi_media_list li {
    font-size: min(4vw, 15px);
    font-weight: bold;
    margin-right: 0;
    margin-bottom: 0.5em;
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
  }
  #headernavi_2024_s_style .headernavi_inner .headernavi_for_media .headernavi_media_list li a {
    color: #6A6A6A;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
  }
  #headernavi_2024_s_style .headernavi_inner .headernavi_for_media .headernavi_media_list li a::after {
    display: block;
    content: "";
    background: url(https://cdn.getshifter.co/be7ed2e8e82138bc0a01637baba83e9585cb0b44/uploads/2024/07/icon_link.png);
    background-size: contain;
    width: 10px;
    height: 10px;
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
  }
  #headernavi_2024_s_style .headernavi_inner .headernavi_bottom_line {
    width: 100%;
    display: block;
  }
  #headernavi_2024_s_style .headernavi_inner .headernavi_bottom_line .headernavi_sns {
    margin: 0 auto 15vw;
  }
  #headernavi_2024_s_style .headernavi_inner .headernavi_bottom_line .headernavi_sns ul {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #headernavi_2024_s_style .headernavi_inner .headernavi_bottom_line .headernavi_sns ul li:not(:first-child) {
    margin-left: 1.5em;
  }
  #headernavi_2024_s_style .headernavi_inner .headernavi_bottom_line .headernavi_bottom {
    background: #FFF;
    padding-bottom: 10vw;
  }
  #headernavi_2024_s_style .headernavi_inner .headernavi_bottom_line .headernavi_bottom ul {
    width: 86%;
    margin: auto;
    display: block;
  }
  #headernavi_2024_s_style .headernavi_inner .headernavi_bottom_line .headernavi_bottom ul li {
    display: flex;
    justify-content: space-between;
  }
  #headernavi_2024_s_style .headernavi_inner .headernavi_bottom_line .headernavi_bottom ul div {
    display: block;
  }
  #headernavi_2024_s_style .headernavi_inner .headernavi_bottom_line .headernavi_bottom ul div a {
    display: block;
    font-size: 2.6666666667vw;
    margin-right: 0;
    padding-right: 0;
    border-right: none;
    line-height: 2.8em;
  }
  #headernavi_2024_s_style .headernavi_inner .headernavi_bottom_line .headernavi_bottom ul div:last-of-type a:last-of-type {
    border: none;
    margin: 0;
  }
  #headernavi_2024_s_style .headernavi_inner .headernavi_bottom_line .headernavi_bottom ul p.headernavi_copyright {
    display: block;
    font-size: 2.6666666667vw;
    margin: 8vw 0 0;
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
}

/*
    フッター
*/
.c-breadcrumb {
  padding: 20px 0;
  overflow: auto;
  text-align: center;
  white-space: nowrap;
  background-color: #efe3d3;
}
@media screen and (max-width: 768px) {
  .c-breadcrumb {
    padding: 5.3333333333vw 10px;
  }
}
.c-breadcrumb .c-breadcrumb-inner {
  display: inline-block;
  margin: 0;
  font-size: 12px;
  font-weight: normal;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .c-breadcrumb .c-breadcrumb-inner {
    font-size: 3.2vw;
  }
}

footer {
  width: 100%;
  position: relative;
  z-index: 10;
  background: #fff;
}
footer ol, footer ul, footer li {
  padding: 0;
  list-style-type: none;
  margin: 0;
}
footer img {
  width: 100%;
}
footer .footer_inner {
  width: 100%;
  max-width: 980px;
  margin: auto;
  padding-top: min(6.1224489796%, 60px);
  padding-bottom: 25px;
}
footer .footer_inner .footer_product {
  width: 100%;
  margin-bottom: 4em;
}
footer .footer_inner .footer_product h2.footer_product_title {
  width: 175px;
  height: auto;
  margin: 0;
  margin-bottom: 20px;
}
footer .footer_inner .footer_product h2.footer_product_title img {
  width: 100%;
}
footer .footer_inner .footer_product .footer_product_list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
footer .footer_inner .footer_product .footer_product_list li.footer_product_column {
  width: 23.4693877551%;
}
footer .footer_inner .footer_product .footer_product_list li.footer_product_column ol.footer_product_linklist {
  width: 100%;
  margin-top: 1em;
}
footer .footer_inner .footer_product .footer_product_list li.footer_product_column ol.footer_product_linklist li {
  width: 100%;
  color: #6A6A6A;
  text-align: center;
  font-weight: bold;
  font-size: min(1.2244897959vw, 12px);
  line-height: 3em;
}
footer .footer_inner .footer_product .footer_product_list li.footer_product_column ol.footer_product_linklist li a {
  color: #6A6A6A;
}
footer .footer_inner .footer_product .footer_product_list li.footer_product_column ol.footer_product_linklist li br.spil {
  display: none;
}
footer .footer_inner .footer_service {
  margin-bottom: 4em;
}
footer .footer_inner .footer_service h2 {
  color: #4D4D4D;
  font-weight: bold;
  margin: 0;
  margin-bottom: 15px;
  font-size: min(1.8367346939vw, 18px);
}
footer .footer_inner .footer_service .footer_service_list {
  display: grid;
  grid-template-areas: "area1 area2 area3 area4" "area1 area5 area6 area7";
  grid-template-columns: 23.4693877551% 23.4693877551% 23.4693877551% 23.4693877551%;
  grid-template-rows: 1fr 1fr;
  justify-content: space-between;
  align-content: space-between;
  row-gap: min(1.3265306122vw, 13px);
}
footer .footer_inner .footer_service .footer_service_list li {
  margin: 0;
}
footer .footer_inner .footer_service .footer_service_list .item-1 {
  grid-area: area1;
}
footer .footer_inner .footer_service .footer_service_list .item-2 {
  grid-area: area2;
}
footer .footer_inner .footer_service .footer_service_list .item-3 {
  grid-area: area3;
}
footer .footer_inner .footer_service .footer_service_list .item-4 {
  grid-area: area4;
}
footer .footer_inner .footer_service .footer_service_list .item-5 {
  grid-area: area5;
}
footer .footer_inner .footer_service .footer_service_list .item-6 {
  grid-area: area6;
}
footer .footer_inner .footer_service .footer_service_list .item-7 {
  grid-area: area7;
}
footer .footer_inner .footer_for_media {
  display: flex;
  align-items: center;
  margin-bottom: 4em;
}
footer .footer_inner .footer_for_media h2 {
  color: #4D4D4D;
  font-weight: bold;
  margin: 0;
  margin-right: 1.5em;
  font-size: min(1.8367346939vw, 18px);
}
footer .footer_inner .footer_for_media .footer_media_list {
  display: flex;
  padding-top: 2px;
}
footer .footer_inner .footer_for_media .footer_media_list li {
  font-size: min(1.2244897959vw, 12px);
  font-weight: bold;
  margin-right: 3em;
  position: relative;
}
footer .footer_inner .footer_for_media .footer_media_list li a {
  color: #6A6A6A;
}
footer .footer_inner .footer_for_media .footer_media_list li::after {
  display: block;
  content: "";
  background: url(https://cdn.getshifter.co/be7ed2e8e82138bc0a01637baba83e9585cb0b44/uploads/2024/07/icon_link.png);
  background-size: contain;
  width: 9px;
  height: 9px;
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
}
footer .footer_inner .footer_bottom_line {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .footer_inner .footer_bottom_line .footer_sns ul {
  display: flex;
  align-items: center;
}
footer .footer_inner .footer_bottom_line .footer_sns ul li:not(:first-child) {
  margin-left: 1.5em;
}
footer .footer_inner .footer_bottom_line .footer_bottom {
  padding-top: 2px;
}
footer .footer_inner .footer_bottom_line .footer_bottom ul {
  display: flex;
  justify-content: space-between;
}
footer .footer_inner .footer_bottom_line .footer_bottom ul li {
  display: flex;
  justify-content: space-between;
}
footer .footer_inner .footer_bottom_line .footer_bottom ul div {
  display: flex;
  justify-content: space-between;
}
footer .footer_inner .footer_bottom_line .footer_bottom ul div a {
  display: block;
  font-size: 10px;
  margin-right: 2em;
  padding-right: 2em;
  border-right: 1px solid #4D4D4D;
}
footer .footer_inner .footer_bottom_line .footer_bottom ul div:last-of-type a:last-of-type {
  border: none;
  margin: 0;
}
footer .footer_inner .footer_bottom_line .footer_bottom ul p.footer_copyright {
  display: block;
  font-size: 10px;
  margin: 0;
  margin-left: 2em;
}
@media screen and (max-width: 768px) {
  footer .footer_inner {
    width: 100%;
    max-width: none;
    margin: auto;
    padding-top: 0;
    padding: 15vw 0 0;
  }
  footer .footer_inner .footer_product {
    width: 86%;
    margin: auto;
    margin-bottom: 10vw;
  }
  footer .footer_inner .footer_product h2.footer_product_title {
    width: 60%;
    max-width: 175px;
    height: auto;
    margin: auto;
    margin-bottom: 5vw;
  }
  footer .footer_inner .footer_product h2.footer_product_title img {
    width: 100%;
  }
  footer .footer_inner .footer_product .footer_product_list {
    display: block;
  }
  footer .footer_inner .footer_product .footer_product_list li.footer_product_column {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 5vw;
  }
  footer .footer_inner .footer_product .footer_product_list li.footer_product_column .footer_product_img {
    width: 50%;
  }
  footer .footer_inner .footer_product .footer_product_list li.footer_product_column ol.footer_product_linklist {
    width: 50%;
    margin-top: 0;
  }
  footer .footer_inner .footer_product .footer_product_list li.footer_product_column ol.footer_product_linklist li {
    width: 100%;
    color: #6A6A6A;
    text-align: center;
    font-weight: bold;
    font-size: min(3.2vw, 12px);
    line-height: 1.4em;
    margin-top: 1.2em;
  }
  footer .footer_inner .footer_product .footer_product_list li.footer_product_column ol.footer_product_linklist li:first-of-type {
    margin-top: 0;
  }
  footer .footer_inner .footer_product .footer_product_list li.footer_product_column ol.footer_product_linklist li a {
    color: #6A6A6A;
  }
  footer .footer_inner .footer_product .footer_product_list li.footer_product_column ol.footer_product_linklist li br.spil {
    display: inline !important;
  }
  footer .footer_inner .footer_service {
    width: 86%;
    margin: auto;
    margin-bottom: 2em;
    padding-bottom: 2em;
    border-bottom: 1px solid #6A6A6A;
  }
  footer .footer_inner .footer_service h2 {
    color: #707070;
    font-weight: bold;
    margin: 0;
    margin-bottom: 15px;
    font-size: min(4.8vw, 18px);
  }
  footer .footer_inner .footer_service .footer_service_list {
    display: block;
  }
  footer .footer_inner .footer_service .footer_service_list li {
    margin: 0;
    margin-bottom: 5vw;
  }
  footer .footer_inner .footer_service .footer_service_list li span {
    font-size: min(4vw, 15px);
    font-weight: bold;
    margin-right: 0;
    margin-bottom: 0.5em;
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    color: #6A6A6A;
  }
  footer .footer_inner .footer_service .footer_service_list li span::after {
    display: block;
    content: "";
    background: url(https://cdn.getshifter.co/be7ed2e8e82138bc0a01637baba83e9585cb0b44/uploads/2024/07/icon_link.png);
    background-size: contain;
    width: 10px;
    height: 10px;
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
  }
  footer .footer_inner .footer_service .footer_service_list li.item-5 {
    margin-top: 10vw;
  }
  footer .footer_inner .footer_for_media {
    display: block;
    width: 86%;
    align-items: center;
    margin: auto;
    margin-bottom: 15vw;
    padding-bottom: 2em;
    border-bottom: 1px solid #6A6A6A;
  }
  footer .footer_inner .footer_for_media h2 {
    color: #4D4D4D;
    font-weight: bold;
    margin: 0;
    margin-right: 1.5em;
    font-size: min(4.8vw, 18px);
    margin-bottom: 1em;
  }
  footer .footer_inner .footer_for_media .footer_media_list {
    display: block;
    padding-top: 2px;
  }
  footer .footer_inner .footer_for_media .footer_media_list li {
    font-size: min(4vw, 15px);
    font-weight: bold;
    margin-right: 0;
    margin-bottom: 0.5em;
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
  }
  footer .footer_inner .footer_for_media .footer_media_list li a {
    color: #6A6A6A;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
  }
  footer .footer_inner .footer_for_media .footer_media_list li::after {
    display: block;
    content: "";
    background: url(https://cdn.getshifter.co/be7ed2e8e82138bc0a01637baba83e9585cb0b44/uploads/2024/07/icon_link.png);
    background-size: contain;
    width: 10px;
    height: 10px;
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
  }
  footer .footer_inner .footer_bottom_line {
    width: 100%;
    display: block;
  }
  footer .footer_inner .footer_bottom_line .footer_sns {
    margin: 0 auto 15vw;
  }
  footer .footer_inner .footer_bottom_line .footer_sns ul {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  footer .footer_inner .footer_bottom_line .footer_sns ul li:not(:first-child) {
    margin-left: 1.5em;
  }
  footer .footer_inner .footer_bottom_line .footer_bottom {
    background: #F6F6F6;
    border-top: 1px solid #707070;
    padding-top: 10vw;
    padding-bottom: 10vw;
  }
  footer .footer_inner .footer_bottom_line .footer_bottom ul {
    width: 86%;
    margin: auto;
    display: block;
  }
  footer .footer_inner .footer_bottom_line .footer_bottom ul li {
    display: flex;
    justify-content: space-between;
  }
  footer .footer_inner .footer_bottom_line .footer_bottom ul div {
    display: block;
  }
  footer .footer_inner .footer_bottom_line .footer_bottom ul div a {
    display: block;
    font-size: 2.6666666667vw;
    margin-right: 0;
    padding-right: 0;
    border-right: none;
    line-height: 2.8em;
  }
  footer .footer_inner .footer_bottom_line .footer_bottom ul div:last-of-type a:last-of-type {
    border: none;
    margin: 0;
  }
  footer .footer_inner .footer_bottom_line .footer_bottom ul p.footer_copyright {
    display: block;
    font-size: 2.6666666667vw;
    margin: 8vw 0 0;
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
}

/*
    FAQ
*/
section.faq {
  background: #EFE3D3;
  width: 100%;
}
section.faq .section_inner {
  padding: min(8.3333333333%, 100px) 0;
}
section.faq .section_inner .ttl h2 strong {
  font-size: 23px;
}
@media screen and (max-width: 768px) {
  section.faq .section_inner .ttl h2 strong {
    font-size: 6.133vw;
  }
}
section.faq .section_inner .ttl h2 small {
  margin-top: 7px;
}
@media screen and (max-width: 768px) {
  section.faq .section_inner .ttl h2 small {
    margin-top: 3.467vw;
  }
}
section.faq .section_inner .faq_list {
  width: 40%;
  margin: 3em auto;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}
section.faq .section_inner .faq_list .faq_list_title {
  border-top: 1px solid rgba(0, 0, 0, 0.5);
  line-height: 1.8em;
  height: 5em;
  font-size: min(1.25vw, 15px);
  font-weight: normal;
  letter-spacing: 0.1em;
  padding: 1.6em 0.5em;
  position: relative;
}
section.faq .section_inner .faq_list .faq_list_title::after {
  content: "";
  display: block;
  position: absolute;
  right: 1.5em;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 0.7em;
  height: 0.7em;
  border: 2px solid;
  border-color: transparent #000 #000 transparent;
  transform-origin: center center;
  transition: all 0.4s ease;
}
section.faq .section_inner .faq_list .faq_list_title.show::after {
  transform: translateY(-50%) rotate(225deg);
}
section.faq .section_inner .faq_list .faq_list_title a {
  display: block;
  width: 100%;
  height: auto;
}
section.faq .section_inner .faq_list .faq_list_text {
  border-top: 1px solid rgba(0, 0, 0, 0.5);
  font-size: min(1vw, 12px);
  background: #f5f0e4;
  line-height: 2em;
  width: 100%;
  height: 0;
  overflow: hidden;
  padding: 0 1em;
  opacity: 1;
  visibility: hidden;
  transition: all 0.3s ease;
}
section.faq .section_inner .faq_list .faq_list_text.show {
  visibility: visible;
  opacity: 1;
  padding: 1em 1em;
  height: -moz-fit-content;
  height: fit-content;
}
section.faq .section_inner .faq_list .faq_list_text a {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  section.faq .section_inner {
    padding: min(26.6666666667%, 100px) 0;
  }
  section.faq .section_inner h2 {
    width: 84%;
    max-width: none;
    margin: auto;
  }
  section.faq .section_inner .faq_list {
    width: 84%;
    margin: 3em auto;
  }
  section.faq .section_inner .faq_list .faq_list_title {
    font-size: min(4vw, 15px);
    padding: 1.6em 0.5em;
    height: auto;
  }
  section.faq .section_inner .faq_list .faq_list_title::after {
    top: 50%;
    transform: translateY(-70%) rotate(45deg);
    width: 0.7em;
    height: 0.7em;
  }
  section.faq .section_inner .faq_list .faq_list_title.show::after {
    transform: translateY(-40%) rotate(225deg);
  }
  section.faq .section_inner .faq_list .faq_list_text {
    font-size: min(3.2vw, 12px);
  }
}/*# sourceMappingURL=common.css.map */