@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
/*-----------------
category: mixins

pc    1025 ~
sp    767 ~ 1024
sp-s  375 ~ 766
min   320 ~ 374
-----------------*/
/*----- m.vw(数値) -----*/
/*----- IE10,11 -----*/
/*----- chrome -----*/
/*------------------------------------------------------------
	リセット用
------------------------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
ruby,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
form,
fieldset,
legend,
label,
header,
footer,
hgroup,
menu,
nav,
main,
article,
section,
aside,
details,
figure,
figcaption,
canvas,
embed,
output,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%; /*16px相当*/
  vertical-align: baseline;
  text-justify: inter-ideograph; /*----IEとedge用*/
}

header,
footer,
hgroup,
menu,
nav,
main,
article,
section,
aside,
details,
figure,
figcaption {
  display: block;
}

body {
  line-height: 1.5;
}

a {
  text-decoration: none;
}

ol,
ul {
  list-style: none;
}

hr {
  display: none;
}

address,
em {
  font-style: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  vertical-align: bottom;
  border: none; /*画像リンク時の線防止*/
  max-width: 100%;
  height: auto;
}

/* Fonts */
body {
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
}

/*------------------------------------------------------------
	共通スタイル
------------------------------------------------------------*/
body {
  color: #555555;
  font-size: 1.125rem;
}

h2 {
  padding: 25px 0 30px;
  text-align: center;
  color: #555555;
  font-size: 2rem;
  font-weight: 400;
  border-bottom: 1px solid #999999;
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: clamp(25px, 8vw, 30px);
    line-height: 1.14;
  }
}
h2 .deco {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
h2 .deco::before, h2 .deco::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 16px;
  margin-top: 8px;
  background: url("../img/decoration/h2_single.svg") center center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  h2 .deco::before, h2 .deco::after {
    max-width: 17px;
    width: 100%;
  }
}
h2 .deco::before {
  margin-right: 30px;
}
@media screen and (max-width: 767px) {
  h2 .deco::before {
    margin-right: clamp(15px, 8vw, 30px);
  }
}
h2 .deco::after {
  margin-left: 30px;
}
@media screen and (max-width: 767px) {
  h2 .deco::after {
    margin-left: clamp(15px, 8vw, 30px);
  }
}

.contact-inner .contact-tel h2 .deco::before,
.pamphlet-wrapper h2 .deco::before {
  background: url("../img/decoration/h2_single.svg") center center no-repeat !important;
  background-size: contain !important;
}
.contact-inner .contact-tel h2 .deco::after,
.pamphlet-wrapper h2 .deco::after {
  background: url("../img/decoration/h2_single.svg") center center no-repeat !important;
  background-size: contain !important;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: inherit;
  }
}

/*------------------------------------------------------------
	汎用クラス
------------------------------------------------------------*/
.container {
  padding: 0 20px;
}

.contents-mw {
  max-width: 1200px;
  margin: 0 auto;
}

.contents-inner-mw {
  max-width: 1088px;
  margin: 0 auto;
}

.contents-inner-mw--s {
  max-width: 1000px;
  margin: 0 auto;
}

.bgR-down {
  background: url("../img/bgR_downward_1366.svg") top center no-repeat;
  background-size: cover;
}
@media screen and (min-width: 1920px) {
  .bgR-down {
    background: url("../img/bgR_downward.svg") top center no-repeat;
    background-size: cover;
  }
}
@media screen and (max-width: 375px) {
  .bgR-down {
    background: url("../img/bgR_downward_sp.svg") top center no-repeat;
    background-size: cover;
  }
}

.d-block {
  display: block !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-inline {
  display: inline !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media screen and (max-width: 1200px) {
  .pc-hide {
    display: none !important;
  }
}

@media screen and (max-width: 1024px) {
  .tab-hide {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .sp-hide {
    display: none !important;
  }
}

.pc-show {
  display: none !important;
}
@media screen and (max-width: 1200px) {
  .pc-show {
    display: block !important;
  }
}

.tab-show {
  display: none !important;
}
@media screen and (max-width: 1024px) {
  .tab-show {
    display: block !important;
  }
}

.tab-show-flex {
  display: none !important;
}
@media screen and (max-width: 1024px) {
  .tab-show-flex {
    display: flex !important;
  }
}

.sp-show {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp-show {
    display: block !important;
  }
}

.sp-show-inline-block {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp-show-inline-block {
    display: inline-block !important;
  }
}

.sp-show-flex {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp-show-flex {
    display: flex !important;
  }
}

.is-show {
  opacity: 1 !important;
  visibility: inherit !important;
}

.text-left {
  text-align: left !important;
}

.text-c {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
  height: 0;
}

/* パーツ */
.btn-box {
  display: block;
  margin: 0 auto;
}

.btn {
  filter: drop-shadow(0 3px 4px rgba(0, 0, 0, 0.16));
  transition: 0.2s;
}
.btn:active {
  filter: none;
}
.btn.shadow-sm:active {
  filter: none;
}

.icon-link-after::after {
  content: "";
  background: url("../img/icon/link_gray.svg") center center no-repeat;
  background-size: contain;
  width: 15px;
  height: 13px;
  margin-left: 7px;
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  .icon-link-after::after {
    width: 12px;
  }
}
.icon-link-after.icon-pink::after {
  background: url("../img/icon/link_pink.svg") center center no-repeat;
  background-size: contain;
}

.icon-link-after:hover::after {
  background: url("../img/icon/link.svg") center center no-repeat;
  background-size: contain;
}

.icon-notification {
  position: relative;
  padding-left: 29px;
}
.icon-notification::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 19px;
  height: 100%;
  background: url("../img/icon/notification_gray.svg") center center no-repeat;
  background-size: contain;
  transition: 0.2s;
}

.icon-note {
  position: relative;
  padding-left: 28px;
}
.icon-note::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 23px;
  height: 100%;
  background: url("../img/icon/note_skyblue.svg") center center no-repeat;
  background-size: contain;
  transition: 0.2s;
}

.btn-style1 {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  max-width: 464px;
  width: 100%;
  height: 80px;
  color: #707070;
  font-size: clamp(24px, 1.8301610542vw, 25px);
  font-weight: bold;
  text-align: center;
  background: #fff;
  border: 5px solid #707070;
  border-radius: 50px;
}
.btn-style1.btn-pink {
  color: #e32649;
  border-color: #e32649;
}
@media screen and (max-width: 375px) {
  .btn-style1 {
    max-width: 260px;
    height: 100%;
  }
}

.btn-style1:hover {
  color: #fff;
  background: #006ab6;
  border-color: #006ab6;
}
.btn-style1:hover.btn-pink {
  background: #e32649;
  border-color: #e32649;
}

.btn-style2 {
  display: inline-block;
  padding: 6px 25px 7px;
  color: #707070;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  background-color: #fff;
  border: 3px solid #707070;
  border-radius: 30px;
}
.btn-style2.btn-pink {
  color: #e32649;
  border-color: #e32649;
}

.btn-style2:hover {
  color: #fff;
  background-color: #006ab6;
  border-color: #006ab6;
}
.btn-style2:hover.btn-pink {
  background: #e32649;
  border-color: #e32649;
}
.btn-style2:hover .icon-notification::before {
  background: url("../img/icon/notification.svg") center center no-repeat;
  background-size: contain;
}
.btn-style2:hover .icon-note::before {
  background: url("../img/icon/note.svg") center center no-repeat;
  background-size: contain;
}

.btn-style3 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 477px;
  max-height: 180px;
  width: clamp(162px, 27.8184480234vw, 380px);
  height: clamp(86px, 10.541727672vw, 144px);
  color: #fff;
  text-align: center;
  font-size: clamp(22px, 2.3426061493vw, 32px);
  font-weight: bold;
  border-radius: 100px;
  transition: 0.3s;
}
.btn-style3.btn-blue {
  background-color: #006ab6;
}
.btn-style3.btn-blue--60 {
  background-color: #75a6d4;
}
.btn-style3.btn-green {
  background-color: #47c564;
}
.btn-style3.btn-gray {
  background-color: #707070;
}
@media screen and (max-width: 320px) {
  .btn-style3 {
    width: 128px;
    font-size: 18px;
  }
}

@media (hover: hover) {
  .btn-style3:hover.btn-blue {
    background-color: #004a80;
  }
  .btn-style3:hover.btn-blue--60 {
    background-color: #a3c3e2;
  }
  .btn-style3:hover.btn-green {
    background-color: #6cd183;
  }
  .btn-style3:hover.btn-gray {
    background-color: #999999;
  }
}
.guide-link-wrapper .btn-box:first-child {
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .guide-link-wrapper .btn-box:first-child {
    margin-bottom: 28px;
  }
}
.guide-link-wrapper .btn {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .guide-link-wrapper .btn-style1 {
    max-width: inherit;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 6px 15px;
    font-size: 18px;
    border-width: 3px;
  }
}
.guide-link-wrapper .btn-style1::before {
  content: "";
  display: inline-block;
  margin-top: 3px;
  transition: 0.2s;
  width: clamp(20px, 2.196193265vw, 30px);
  height: 24px;
  margin-right: 10px;
  background: url("../img/icon/mail_pink.svg") center center no-repeat;
  background-size: contain;
}
.guide-link-wrapper .btn-style1 > span {
  display: flex;
  align-items: center;
}
.guide-link-wrapper .btn-style1 .icon-link-after::after {
  display: inline-block;
  height: 12px;
}
.guide-link-wrapper .btn-style1:hover::before {
  background: url("../img/icon/mail.svg") center center no-repeat;
  background-size: contain;
}
.guide-link-wrapper .btn-style1:hover .icon-link-after::after {
  background: url("../img/icon/link.svg") center center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .guide-link-wrapper .btn-style3 {
    padding: 30px 50px 32px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    box-sizing: border-box;
  }
}

.chip {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 32px;
  margin-left: 15px;
  padding: 0 17px;
  font-size: 1rem;
  color: #3079be;
  background-color: #fff;
  border: 1px solid #3079be;
  border-radius: 17px;
}
.chip.chip-white {
  color: #555555;
  background: #fff;
  border: 1px solid #555555;
}
.chip.chip-green, .chip.chip-notification {
  color: #6cd183;
  border: 1px solid #6cd183;
}
.chip.chip-none {
  display: none;
}

.more-link {
  text-align: right;
}
.more-link a {
  padding-right: 22px;
  color: #555555;
  text-decoration: underline;
  transition: 0.2s;
  background: url("../img/icon/arrow_right.svg") center right 5px no-repeat;
}
.more-link a:hover {
  color: #006ab6;
  background: url("../img/icon/arrow_right_red.svg") center right no-repeat;
}

.video-box {
  max-width: 640px;
  margin: 50px auto 0;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 767px) {
  .video-box {
    margin: 40px auto 0;
  }
}
.video-box iframe {
  width: 100%;
  height: 100%;
}

/*------------------------------------------------------------
	フェードアニメーション
------------------------------------------------------------*/
.load-in {
  opacity: 0;
}

.load-up {
  opacity: 0;
}

.fade-in {
  opacity: 0;
}

.fade-up {
  opacity: 0;
}

.inner-fade-in {
  opacity: 0;
}

.inner-fade-up {
  opacity: 0;
}

.is-faded-in {
  -webkit-animation: fade-in-anime 1.5s forwards ease-in-out;
          animation: fade-in-anime 1.5s forwards ease-in-out;
}

.is-faded-up {
  -webkit-animation: fade-up-anime 1.5s forwards ease-in-out;
          animation: fade-up-anime 1.5s forwards ease-in-out;
}

.is-slided-up {
  -webkit-animation: slide-up-anime 0.5s forwards ease-in-out;
          animation: slide-up-anime 0.5s forwards ease-in-out;
}

.is-slided-down {
  -webkit-animation: slide-down-anime 1s forwards ease-in-out;
          animation: slide-down-anime 1s forwards ease-in-out;
}

@-webkit-keyframes fade-in-anime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade-in-anime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fade-up-anime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade-up-anime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes slide-up-anime {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
}
@keyframes slide-up-anime {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
}
@-webkit-keyframes slide-down-anime {
  from {
    transform: translate(0);
    z-index: 1;
  }
  to {
    opacity: 0;
    transform: translateY(100%);
    visibility: hidden;
    z-index: -1;
  }
}
@keyframes slide-down-anime {
  from {
    transform: translate(0);
    z-index: 1;
  }
  to {
    opacity: 0;
    transform: translateY(100%);
    visibility: hidden;
    z-index: -1;
  }
}
/*------------------------------------------------------------
	header
------------------------------------------------------------*/
header {
  background-color: #fff;
}

.teijin-logo {
  display: flex;
  justify-content: flex-end;
  height: 45px;
  text-align: right;
  outline: 1px solid #eeeeee;
}
@media screen and (max-width: 767px) {
  .teijin-logo {
    height: 30px;
  }
}

.prd-header {
  box-sizing: border-box;
  width: 100%;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .prd-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0;
  }
}
.prd-header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
}
.prd-header .prd-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  height: 88px;
  padding: 22px 25px;
}
@media screen and (max-width: 767px) {
  .prd-header .prd-header-inner {
    width: calc(100% - 60px);
    height: 60px;
    padding: 0;
  }
}
.prd-header .logo-flex {
  display: flex;
  align-items: center;
  width: 100%;
}
.prd-header .logo-flex .prd-logo {
  display: flex;
  align-items: center;
  max-width: 217px;
  height: 46px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .prd-header .logo-flex .prd-logo {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: inherit;
  }
  .prd-header .logo-flex .prd-logo img.sp-hide {
    max-width: 152px;
    max-height: 32px;
  }
}
.prd-header .logo-flex .prd-logo a {
  display: inline-block;
}
.prd-header .logo-flex .prd-text {
  width: 100%;
  margin-left: clamp(10px, 1.4641288433vw, 20px);
  font-size: clamp(10px, 1.0248901903vw, 14px);
}
.prd-header .logo-flex .prd-text .prd-name {
  font-size: clamp(14px, 1.6105417277vw, 22px);
}
.prd-header .prd-text-sp {
  display: none;
  align-items: center;
  width: 100%;
  height: 24px;
  padding: 0 20px;
  font-size: 11px;
  color: #555555;
  border-bottom: 1px solid #eeeeee;
  white-space: nowrap;
  overflow-x: auto;
}
@media screen and (max-width: 767px) {
  .prd-header .prd-text-sp {
    display: flex;
  }
}

.btn-menu {
  display: flex;
  justify-content: flex-end;
  max-width: 400px;
  width: inherit;
}
@media screen and (max-width: 767px) {
  .btn-menu {
    max-width: inherit;
    flex-direction: column;
  }
}
.btn-menu .btn {
  width: inherit;
}
.btn-menu .btn.btn-style2 {
  padding: 5px 23px 7px;
  font-size: clamp(16px, 1.317715959vw, 18px);
}
@media screen and (max-width: 767px) {
  .btn-menu .btn.btn-style2 {
    font-size: 18px;
  }
}
.btn-menu .btn.btn-news {
  margin-right: 15px;
}
@media screen and (max-width: 767px) {
  .btn-menu .btn.btn-news {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.btn-menu .btn.btn-contact {
  color: #196ab7;
  border-color: #196ab7;
}
.btn-menu .btn.btn-contact.current {
  background-color: #196ab7;
  border-color: #196ab7;
}
.btn-menu .btn.btn-contact:hover {
  background-color: #196ab7;
  border-color: #196ab7;
}
.btn-menu .btn .contact-btn {
  display: flex;
  align-items: center;
}
.btn-menu .btn .contact-btn::before, .btn-menu .btn .contact-btn::after {
  content: "";
  display: inline-block;
  margin-top: 3px;
  transition: 0.2s;
}
.btn-menu .btn .contact-btn::before {
  width: 24px;
  height: 19px;
  margin-right: 10px;
  background: url("../img/icon/mail_blue.svg") center center no-repeat;
  background-size: contain;
}
.btn-menu .btn:hover,
.btn-menu .btn.current {
  color: #fff;
  background-color: #707070;
  border-color: #707070;
}
.btn-menu .btn:hover .icon-notification::before,
.btn-menu .btn.current .icon-notification::before {
  background: url("../img/icon/notification.svg") center center no-repeat;
  background-size: contain;
}
.btn-menu .btn:hover .contact-btn::before,
.btn-menu .btn.current .contact-btn::before {
  background: url("../img/icon/mail.svg") center center no-repeat;
  background-size: contain;
}
.btn-menu .btn:hover .contact-btn::after,
.btn-menu .btn.current .contact-btn::after {
  background: url("../img/icon/link.svg") center center no-repeat;
  background-size: contain;
}

/* ハンバーガーメニュー */
#menu-check-btn {
  display: none;
}

.menu-btn {
  position: relative;
  display: none;
}
@media screen and (max-width: 767px) {
  .menu-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background-color: #eeeeee;
    transition: 0.2s;
    cursor: pointer;
    z-index: 10;
  }
}
@media screen and (max-width: 767px) {
  .menu-btn {
    width: 60px;
    height: 60px;
  }
}
.menu-btn span.menu-line,
.menu-btn span.menu-line::before,
.menu-btn span.menu-line::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 4px;
  background-color: #c8c8c8;
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  .menu-btn span.menu-line,
.menu-btn span.menu-line::before,
.menu-btn span.menu-line::after {
    width: 30px;
    height: 2px;
  }
}
.menu-btn span.menu-line {
  top: 30px;
}
@media screen and (max-width: 767px) {
  .menu-btn span.menu-line {
    top: 22px;
  }
}
.menu-btn span.menu-line::before {
  bottom: 12px;
}
@media screen and (max-width: 767px) {
  .menu-btn span.menu-line::before {
    bottom: 8px;
  }
}
.menu-btn span.menu-line::after {
  top: 12px;
}
@media screen and (max-width: 767px) {
  .menu-btn span.menu-line::after {
    top: 8px;
  }
}
.menu-btn span.menu-text {
  position: absolute;
  bottom: 7px;
  font-size: 14px;
  font-weight: 500;
  color: #707070;
}
.menu-btn span.menu-text:last-child {
  display: none;
}
@media screen and (max-width: 767px) {
  .menu-btn span.menu-text {
    font-size: 12px;
  }
}

#menu-check-btn:checked ~ .menu-btn {
  background-color: #006ab6;
}

#menu-check-btn:checked ~ .menu-btn span.menu-line {
  background-color: transparent;
}

#menu-check-btn:checked ~ .menu-btn span.menu-line::before {
  background-color: #a3c3e2;
  bottom: 0;
  transform: rotate(45deg);
}

#menu-check-btn:checked ~ .menu-btn span.menu-line::after {
  background-color: #a3c3e2;
  top: 0;
  transform: rotate(-45deg);
}

#menu-check-btn:checked ~ .menu-btn span.menu-text {
  color: #fff;
}
#menu-check-btn:checked ~ .menu-btn span.menu-text:nth-of-type(2) {
  display: none;
}
#menu-check-btn:checked ~ .menu-btn span.menu-text:last-of-type {
  display: inline-block;
}

.G-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  height: 52px;
  background: #f2f2f2;
}
@media screen and (max-width: 767px) {
  .G-nav {
    height: 60px;
  }
}

@media screen and (max-width: 767px) {
  .menu-wrapper {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    transition: 0.3s;
    background-color: rgba(242, 242, 242, 0.95);
    z-index: 10;
  }
}
.menu-wrapper .menu-inner.sp-hide {
  display: flex;
  font-size: clamp(16px, 1.4641288433vw, 20px);
}
@media screen and (max-width: 767px) {
  .menu-wrapper .menu-inner.sp-hide {
    flex-direction: column;
  }
}
.menu-wrapper .menu-inner.sp-hide ul.global-menu {
  display: flex;
  align-items: center;
  margin: -3px clamp(0px, 1.4641288433vw, 20px) 0;
}
@media screen and (max-width: 767px) {
  .menu-wrapper .menu-inner.sp-hide ul.global-menu {
    flex-direction: column;
  }
}
.menu-wrapper .menu-inner.sp-hide ul.global-menu li {
  width: 100%;
  margin-right: 5px;
}
.menu-wrapper .menu-inner.sp-hide ul.global-menu li:last-child {
  margin-right: 0;
}
.menu-wrapper .menu-inner.sp-hide ul.global-menu li a {
  display: inline-block;
  color: #444444;
  text-align: center;
  transition: 0.1s;
  white-space: nowrap;
}
.menu-wrapper .menu-inner.sp-hide ul.global-menu li a span {
  margin: 0 20px;
  padding-bottom: 3px;
  border-bottom: 1px dotted #707070;
  transition: 0.1s;
}
.menu-wrapper .menu-inner.sp-hide ul.global-menu li a:hover {
  color: #006ab6;
}
.menu-wrapper .menu-inner.sp-hide ul.global-menu li a:hover span {
  border-bottom: 1px solid #006ab6;
}
.menu-wrapper .menu-inner.sp-hide ul.global-menu li a.current {
  color: #006ab6;
  font-weight: bold;
  pointer-events: none;
}
.menu-wrapper .menu-inner.sp-hide ul.global-menu li a.current span {
  border-bottom: 1px solid #006ab6;
}
.menu-wrapper .menu-inner.sp-hide ul.global-menu li.menu-service a:hover {
  color: #47c564;
}
.menu-wrapper .menu-inner.sp-hide ul.global-menu li.menu-service a:hover span {
  border-bottom: 1px solid #47c564;
}
.menu-wrapper .menu-inner.sp-hide ul.global-menu li.menu-service a.current {
  background: #47c564;
}
.menu-wrapper .menu-inner.sp-show-flex {
  overflow-y: auto;
}
@media screen and (max-width: 767px) {
  .menu-wrapper .menu-inner.sp-show-flex {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 0 20px;
    text-align: center;
  }
  .menu-wrapper .menu-inner.sp-show-flex .global-menu {
    margin-bottom: 28px;
  }
  .menu-wrapper .menu-inner.sp-show-flex .global-menu li a {
    display: inline-block;
    width: calc(100% - 20px);
    padding: 10px;
    font-size: 20px;
    font-weight: 500;
    color: #707070;
    border-bottom: 1px solid #c8c8c8;
  }
  .menu-wrapper .menu-inner.sp-show-flex .global-menu li a.current {
    background: rgba(255, 255, 255, 0.8);
  }
  .menu-wrapper .menu-inner.sp-show-flex .global-menu li a:active {
    background: rgba(255, 255, 255, 0.5);
  }
  .menu-wrapper .menu-inner.sp-show-flex .sub-menu {
    margin: 10px 0;
    border-top: 1px solid #c8c8c8;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .menu-wrapper .menu-inner.sp-show-flex .sub-menu {
    margin: 50px 0 10px;
  }
}
@media screen and (max-width: 767px) {
  .menu-wrapper .menu-inner.sp-show-flex .sub-menu li {
    padding: 10px 10px;
    font-size: 16px;
    font-weight: 500;
  }
  .menu-wrapper .menu-inner.sp-show-flex .sub-menu li a {
    color: #707070;
  }
  .menu-wrapper .menu-inner.sp-show-flex .sub-menu li .icon-link {
    margin-left: 10px;
    vertical-align: inherit;
  }
}

@media screen and (max-width: 767px) {
  #menu-check-btn:checked ~ .menu-wrapper {
    right: 0;
  }
}

/*------------------------------------------------------------
	footer
------------------------------------------------------------*/
/* お問い合わせ */
.container.contact-wrapper {
  padding-top: 62px;
  padding-bottom: 122px;
}
@media screen and (min-width: 1920px) {
  .container.contact-wrapper {
    padding-top: 120px;
    padding-bottom: 183px;
  }
}
@media screen and (max-width: 767px) {
  .container.contact-wrapper {
    padding-top: 40px;
    padding-bottom: 110px;
  }
}

.contact-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .contact-inner {
    flex-direction: column;
    align-items: center;
  }
}
.contact-inner .contact-tel {
  max-width: 432px;
  width: 100%;
  margin: 0 clamp(30px, 4.39238653vw, 60px) 0 clamp(0px, 1.4641288433vw, 20px);
}
@media screen and (max-width: 767px) {
  .contact-inner .contact-tel {
    margin: 0 0 30px;
  }
}
.contact-inner .contact-tel h2 {
  padding: 0 0 5px;
  font-size: clamp(30px, 2.3426061493vw, 32px);
  letter-spacing: -1px;
  border: none;
}
@media screen and (max-width: 767px) {
  .contact-inner .contact-tel h2 {
    padding-bottom: 10px;
  }
}
.contact-inner .contact-tel h2 .deco::before {
  margin-right: clamp(20px, 1.8301610542vw, 25px);
}
@media screen and (max-width: 767px) {
  .contact-inner .contact-tel h2 .deco::before {
    margin-right: 30px;
  }
}
.contact-inner .contact-tel h2 .deco::after {
  margin-left: clamp(20px, 1.8301610542vw, 25px);
}
@media screen and (max-width: 767px) {
  .contact-inner .contact-tel h2 .deco::after {
    margin-left: 30px;
  }
}
.contact-inner .contact-tel .tel-number {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(38px, 4.0995607613vw, 56px);
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .contact-inner .contact-tel .tel-number {
    font-size: clamp(30px, 10.1333333333vw, 38px);
  }
}
.contact-inner .contact-tel .tel-number img {
  margin-top: 8px;
  margin-right: 8px;
}
@media screen and (max-width: 767px) {
  .contact-inner .contact-tel .tel-number img {
    max-width: 35px;
  }
}
.contact-inner .contact-tel .tel-number a {
  color: #555555;
}
.contact-inner .contact-tel .reception-hours {
  margin-top: 15px;
  padding: 8px 0;
  text-align: center;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 767px) {
  .contact-inner .contact-tel .reception-hours {
    margin-top: 10px;
    font-size: 20px;
  }
}
.contact-inner .contact-other {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  max-width: 464px;
  width: 100%;
  margin-top: 10px;
}
@media screen and (max-width: 375px) {
  .contact-inner .contact-other {
    max-width: 270px;
  }
}
@media screen and (max-width: 375px) {
  .contact-inner .contact-other .web .btn-style1 {
    display: block;
    max-width: 260px;
    height: 100%;
    padding: 12px 0 15px;
    border-radius: 70px;
    line-height: 1.2;
  }
}
.contact-inner .contact-other .web .btn-style1::before, .contact-inner .contact-other .web .btn-style1::after {
  content: "";
  display: inline-block;
  margin-top: 3px;
  transition: 0.2s;
}
.contact-inner .contact-other .web .btn-style1::before {
  width: clamp(26px, 2.196193265vw, 30px);
  height: 30px;
  margin-right: 15px;
  background: url("../img/icon/mail_gray.svg") center center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 375px) {
  .contact-inner .contact-other .web .btn-style1::before {
    display: block;
    height: 36px;
    width: 100%;
    margin: 0 23px 10px 0;
  }
}
.contact-inner .contact-other .web .btn-style1:hover {
  color: #fff;
  background-color: #006ab6;
  border-color: #006ab6;
}
.contact-inner .contact-other .web .btn-style1:hover::before {
  background: url("../img/icon/mail.svg") center center no-repeat;
  background-size: contain;
}
.contact-inner .contact-other .guidance .btn-style1 {
  color: #fff;
  background: #707070;
}
@media screen and (max-width: 375px) {
  .contact-inner .contact-other .guidance .btn-style1 {
    max-width: 260px;
    height: 80px;
    font-weight: 500;
  }
}
.contact-inner .contact-other .guidance .btn-style1:hover {
  background: #006ab6;
  border-color: #006ab6;
}
.contact-inner .contact-other .guidance .btn-style1 img {
  margin-right: 15px;
}
@media screen and (max-width: 375px) {
  .contact-inner .contact-other .guidance .btn-style1 img {
    max-width: 36px;
    width: 100%;
  }
}

/*SNSアイコン有の場合*/
.contact-sns-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .contact-sns-inner {
    flex-direction: column-reverse;
    gap: 10px;
  }
}
.contact-sns-inner a {
  display: inline-block;
}
.contact-sns-inner p:first-child {
  margin: 0 clamp(30px, 3.125vw, 60px) 0 10px;
}
.contact-sns-inner p:first-child .icon-facebook {
  position: relative;
}
.contact-sns-inner p:first-child .icon-facebook::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/icon/sns_facebook_blue.svg") center center no-repeat;
  background-size: contain;
  opacity: 0;
  transition: 0.2s;
  z-index: 1;
}
.contact-sns-inner p:first-child .icon-youtube {
  position: relative;
}
.contact-sns-inner p:first-child .icon-youtube::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/icon/sns_youtube_red.svg") center center no-repeat;
  background-size: contain;
  opacity: 0;
  transition: 0.2s;
  z-index: 1;
}
.contact-sns-inner p:first-child .icon-facebook:hover::after,
.contact-sns-inner p:first-child .icon-youtube:hover::after {
  opacity: 1;
}
.contact-sns-inner .icon-line {
  transition: 0.2s;
}
.contact-sns-inner .icon-line:hover {
  opacity: 0.7;
}

/* 資料ダウンロード */
.pamphlet-wrapper {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .pamphlet-wrapper {
    padding-top: 20px;
    padding-bottom: 65px;
  }
}
.pamphlet-wrapper .btn-style1 {
  width: 100%;
  margin: 70px auto 0;
  /* pdfアイコンがある場合 */
}
@media screen and (max-width: 375px) {
  .pamphlet-wrapper .btn-style1 {
    max-width: 270px;
    width: calc(100% - 10px);
    height: auto;
    margin-top: 25px;
    padding: 8px 0;
    border-radius: 50px;
    line-height: 1.35;
  }
}
.pamphlet-wrapper .btn-style1 .icon-link-after::after {
  display: inline-block;
  height: 12px;
}
.pamphlet-wrapper .btn-style1 > span {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 375px) {
  .pamphlet-wrapper .btn-style1 > span {
    display: inline-block;
  }
}
.pamphlet-wrapper .btn:hover .icon-pdf::before {
  background: url("../img/icon/pdf.svg") center center no-repeat;
  background-size: contain;
}
.pamphlet-wrapper .btn:hover .icon-link-after::after {
  background: url("../img/icon/link.svg") center center no-repeat;
}

/* フッター */
.footer-menu-wrapper {
  position: relative;
  background: #eeeeee;
  /* SNS一覧 */
}
.footer-menu-wrapper .bottom-follow {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #eeeeee;
  z-index: 1;
}
.footer-menu-wrapper .bottom-follow.at-footer {
  position: relative;
}
.footer-menu-wrapper .to-top {
  position: absolute;
  bottom: 100%;
  right: 40px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .footer-menu-wrapper .to-top {
    bottom: 20px;
    right: 20px;
  }
}
.footer-menu-wrapper .to-top a {
  display: block;
}
.footer-menu-wrapper .to-top a img.is-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.2s;
}
.footer-menu-wrapper .to-top a:hover img.is-hover {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .footer-menu-wrapper .to-top a:hover img.is-hover {
    opacity: 0;
  }
}
.footer-menu-wrapper .to-top a:active img.is-hover {
  opacity: 1;
}
.footer-menu-wrapper .to-top.at-footer {
  position: absolute;
  bottom: calc(100% - 40px);
  right: 40px;
}
@media screen and (max-width: 767px) {
  .footer-menu-wrapper .to-top.at-footer {
    bottom: -20px;
    right: 20px;
  }
}
.footer-menu-wrapper .to-top.agreed-cookie {
  bottom: 40px;
}
.footer-menu-wrapper .to-top.agreed-cookie.at-footer {
  bottom: -20px;
}
.footer-menu-wrapper .footer-policy {
  margin-bottom: 30px;
  padding: 30px 60px 0;
  box-sizing: border-box;
  font-weight: 500;
}
.footer-menu-wrapper .footer-policy.is-slided-down {
  display: none;
}
.footer-menu-wrapper .footer-policy.at-footer {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .footer-menu-wrapper .footer-policy {
    padding: 15px;
  }
}
.footer-menu-wrapper .footer-policy .policy_box {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  padding: 18px 18px 18px 4%;
  font-size: 18px;
  background-color: #2b2b2b;
  background-color: #c8c8c8;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .footer-menu-wrapper .footer-policy .policy_box {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .footer-menu-wrapper .footer-policy .policy_box {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 18px 18px 18px;
    font-size: clamp(11px, 1.8252933507vw, 14px);
  }
}
.footer-menu-wrapper .footer-policy .policy_text {
  margin-right: 18px;
  color: #c8c8c8;
  color: #2b2b2b;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .footer-menu-wrapper .footer-policy .policy_text {
    margin-bottom: 11px;
    margin-right: 0;
  }
}
.footer-menu-wrapper .footer-policy .policy_action {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  box-sizing: border-box;
}
.footer-menu-wrapper .footer-policy .policy_action > [class*=policy_] {
  display: block;
  min-width: 115px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-right: 10px;
  padding: 5px 10px;
  border: none;
  background-color: #4b4b4b;
  background-color: #eeeeee;
  color: #fff;
  color: #2b2b2b;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  box-sizing: border-box;
}
.footer-menu-wrapper .footer-policy .policy_action > [class*=policy_]:hover {
  background: #fff;
}
@media screen and (max-width: 1024px) {
  .footer-menu-wrapper .footer-policy .policy_action > [class*=policy_] {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .footer-menu-wrapper .footer-policy .policy_action > [class*=policy_] {
    min-width: 86px;
    margin-right: 7px;
    font-size: 10px;
  }
}
.footer-menu-wrapper .footer-policy .policy_action .icon-link-after::after {
  background: url("../img/icon/link_gray.svg") center center no-repeat;
  display: inline-block;
  height: 12px;
}
.footer-menu-wrapper .sns-wrapper .sns-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 20px 0;
}
@media screen and (max-width: 767px) {
  .footer-menu-wrapper .sns-wrapper .sns-list {
    padding: 26px 20px 0;
  }
}
.footer-menu-wrapper .sns-wrapper .sns-list-item a {
  display: inline-block;
  width: 100%;
  height: 100%;
  padding: 0;
}
.footer-menu-wrapper .sns-wrapper .sns-list-item a img {
  margin: 0 !important;
}
.footer-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px 5px;
  width: calc(100% - 40px);
  padding: 15px 20px 30px;
}
@media screen and (max-width: 767px) {
  .footer-menu-wrapper ul {
    gap: 5px 0;
    padding: 25px 20px 29px;
  }
}
.footer-menu-wrapper ul li a {
  position: relative;
  display: flex;
  padding: 5px 15px;
  color: #444444;
  font-size: 1rem;
  font-weight: 500;
}
.footer-menu-wrapper ul li a > span {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px dotted #444444;
}
@media screen and (max-width: 767px) {
  .footer-menu-wrapper ul li a {
    font-size: 18px;
    color: #707070;
  }
}
.footer-menu-wrapper ul li a.current {
  color: #333333;
  pointer-events: none;
}
.footer-menu-wrapper ul li a.current > span {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid #333333;
}
.footer-menu-wrapper ul li a:hover {
  color: #006ab6;
}
.footer-menu-wrapper ul li a:hover > span {
  border-bottom: 1px solid #006ab6;
}
.footer-menu-wrapper ul li:last-of-type {
  display: flex;
  align-items: center;
}
.footer-menu-wrapper ul li:last-of-type img {
  margin-top: 2px;
  margin-left: 7px;
}

.footer-teijin-wrapper {
  padding-top: 20px;
  padding-bottom: 25px;
  background: #333333;
}
@media screen and (max-width: 1024px) {
  .footer-teijin-wrapper {
    padding-top: 25px;
    padding-bottom: 20px;
  }
}
.footer-teijin-wrapper ul.teijin-menu {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
  font-size: 15px;
}
@media screen and (max-width: 1024px) {
  .footer-teijin-wrapper ul.teijin-menu {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
  }
}
.footer-teijin-wrapper ul.teijin-menu a {
  color: #fff;
}
.footer-teijin-wrapper ul.teijin-menu a:hover {
  color: #ccc;
}
.footer-teijin-wrapper ul.teijin-menu .icon-link {
  margin-left: 5px;
  vertical-align: inherit;
}
.footer-teijin-wrapper .teijin-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
}
@media screen and (max-width: 1024px) {
  .footer-teijin-wrapper .teijin-bottom {
    flex-direction: column;
    margin-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  .footer-teijin-wrapper .teijin-bottom .footer-logo {
    max-width: 114px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .footer-teijin-wrapper .teijin-bottom .footer-logo img {
    max-height: 14px;
    width: auto;
  }
}
.footer-teijin-wrapper .teijin-bottom .footer-logo a {
  color: #fff;
}
.footer-teijin-wrapper .teijin-bottom .caution {
  color: #ccc;
  font-size: 12px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .footer-teijin-wrapper .teijin-bottom .caution {
    margin-top: 32px;
  }
}
.footer-teijin-wrapper .teijin-bottom .caution .copyright {
  margin-left: 30px;
}
@media screen and (max-width: 767px) {
  .footer-teijin-wrapper .teijin-bottom .caution .copyright {
    display: block;
    margin-top: 10px;
  }
}
/*# sourceMappingURL=base.css.map */