@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital@0;1&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@100..900&display=swap");
/***
    The new CSS reset - version 1.11.2 (last updated 15.11.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio, input, select):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Fix mobile Safari increase font-size on landscape mode */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu, summary {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
  box-sizing: border-box;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
 display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
 - fix for the content editable attribute will work properly.
 - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
  box-sizing: border-box;
}

/* Remove details summary webkit styles */
::-webkit-details-marker {
  display: none;
}

html {
  font-size: 62.5%;
}

body {
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.4rem, 1.2153846154rem + 0.2403846154vw, 1.6rem);
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.6rem;
  }
}
body {
  line-height: 2;
  font-weight: 400;
  background-color: #fff;
}
body.menu-open {
  overflow: hidden;
}

.mincho {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
}

.en {
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
}

a {
  transition: all 0.3s ease;
}

a img {
  transition: all 0.3s ease;
}

.ly_container {
  position: relative;
}

.inview {
  opacity: 0;
}

.inviewwrap {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.inview.active {
  animation: fadeInup 1s ease-out;
  animation-fill-mode: forwards;
}

.inview.noanimation {
  opacity: 1;
  animation: none;
}

.inview.active.left {
  animation: fadeInLeft 1s ease-out;
  animation-fill-mode: forwards;
}

.inview.fade.active {
  animation: fadeIn 1s ease-out;
  animation-fill-mode: forwards;
}

.inview.clip {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.4s ease-in;
  transition-delay: 0.3s;
  opacity: 1;
}

.inview.active.clip {
  clip-path: inset(0 0 0 0);
  animation: none;
}

.inview.clip.delay01 {
  transition-delay: 0.6s;
}

.inview.clip.delay02 {
  transition-delay: 0.9s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeInup {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes fadeInLeft {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}
.delay01 {
  animation-delay: 0.3s !important;
}

.delay02 {
  animation-delay: 0.6s !important;
}

.delay03 {
  animation-delay: 0.9s !important;
}

._spShowImportant {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .inviewwrap {
    position: static;
  }
  ._pcShowImportant {
    display: none !important;
  }
  ._spShowImportant {
    display: block !important;
  }
}
.slick-dots {
  position: absolute;
  bottom: -35px;
  right: 0;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: right;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #BFBFBF;
}

.slick-dots li.slick-active button:before {
  background-color: #133BA3;
}

.slash-title {
  display: inline-block;
  padding: 10px 50px 10px 20px;
  font-size: clamp(1.4rem, 1.2153846154rem + 0.2403846154vw, 1.6rem);
}
@media screen and (max-width: 767px) {
  .slash-title {
    font-size: 1.6rem;
  }
}
.slash-title {
  font-size: clamp(1.4rem, 1.2153846154rem + 0.2403846154vw, 1.6rem);
}
@media screen and (max-width: 767px) {
  .slash-title {
    font-size: 1.6rem;
  }
}
.slash-title {
  font-weight: bold;
  color: #fff;
  clip-path: polygon(0 0, 100% 0, calc(100% - 33px) 100%, 0 100%);
  background: linear-gradient(90deg, #133BA3 0%, #3865DB 100%);
}

.inner {
  max-width: calc(1030px + 6%);
  margin: auto;
  padding: 0 3%;
}
.inner.short {
  max-width: calc(920px + 6%);
}

a.zoom,
a .zoom {
  display: block;
  position: relative;
  overflow: hidden;
  line-height: 0;
  border-radius: 6px;
}
a.zoom img,
a .zoom img {
  transform-origin: center;
}

a.zoom:hover img,
a:hover .zoom img {
  transform: scale(1.05);
  opacity: 1;
}

a.textlink {
  text-decoration: underline;
}

.sp {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
main {
  padding-top: 130px;
  background-color: #FDF8F5;
}
main.no-hp {
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  main {
    padding-top: 75px;
  }
  main p {
    font-size: 1.5rem;
  }
}
main #breadcrumb {
  position: absolute;
  padding: 20px 45px;
  z-index: 2;
}
main #breadcrumb ul {
  display: flex;
}
main #breadcrumb ul li::after {
  content: ">";
  margin: 0 1ex;
}
main #breadcrumb ul li:last-child::after {
  content: "";
}
main #breadcrumb ul li a {
  font-size: clamp(1.2rem, 1.0153846154rem + 0.2403846154vw, 1.4rem);
}
@media screen and (max-width: 767px) {
  main #breadcrumb ul li a {
    font-size: 1.4rem;
  }
}
main #breadcrumb.white {
  color: #fff;
}
main #logos {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  main #logos {
    padding: 50px 0;
  }
}
main #logos .inner {
  background-color: #fff;
  padding: 42px 3%;
}
@media screen and (max-width: 767px) {
  main #logos .inner {
    padding: 20px 3%;
  }
}
main #logos ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 16px;
}
main #logos ul li {
  width: 126px;
}
@media screen and (max-width: 767px) {
  main #logos ul li {
    width: calc(25% - 16px);
  }
}
main #logos ul li a {
  display: block;
  line-height: 0;
}

/* HEADER
================================================== */
#header {
  position: fixed;
  display: flex;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 130px;
  z-index: 500;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  #header {
    height: 80px;
  }
}
#header .header-layout-main {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 200;
}
@media screen and (max-width: 767px) {
  #header .header-layout-main {
    padding: 0 0;
    width: 100%;
  }
}
#header .header-layout-main .header-top-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 3%;
  height: 76px;
}
@media screen and (max-width: 767px) {
  #header .header-layout-main .header-top-layout {
    display: none;
  }
}
#header .header-layout-main .header-logo {
  display: flex;
  align-items: center;
  flex: 1;
}
#header .header-layout-main .header-logo .logo {
  max-width: 248px;
  line-height: 0;
}
#header .header-layout-main .header-logo .sub {
  line-height: 0;
  margin-left: 30px;
}
#header .header-layout-main .header-tepco {
  width: 70px;
}
#header .header-layout-main .header-tepco a {
  display: block;
  line-height: 0;
}
#header .header-layout-main .header-contact {
  width: 158px;
}
#header .header-layout-main .header-contact a {
  display: inline-block;
  background-color: #EC2833;
  color: #fff;
  padding: 8px 40px 8px;
  border-radius: 50px;
  font-size: clamp(1.1rem, 0.9153846154rem + 0.2403846154vw, 1.3rem);
}
@media screen and (max-width: 767px) {
  #header .header-layout-main .header-contact a {
    font-size: 1.3rem;
  }
}
#header .header-layout-main .header-contact a {
  line-height: 1;
}
@media screen and (max-width: 767px) {
  #header .header-layout-main .header-contact a {
    display: none;
  }
}
#header .header-layout-main .header-top-layout-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  #header .header-layout-main .header-top-layout-sp {
    display: block;
  }
  #header .header-layout-main .header-top-layout-sp .header-top {
    display: flex;
    justify-content: space-between;
    padding: 8px;
  }
  #header .header-layout-main .header-top-layout-sp .header-top .logo {
    height: 12px;
    line-height: 0;
  }
  #header .header-layout-main .header-top-layout-sp .header-top .logo a {
    display: inline-block;
    height: 12px;
    line-height: 0;
  }
  #header .header-layout-main .header-top-layout-sp .header-top .header-tepco {
    height: 12px;
    line-height: 0;
    text-align: right;
  }
  #header .header-layout-main .header-top-layout-sp .header-top .header-tepco a {
    display: inline-block;
    height: 12px;
    line-height: 0;
  }
  #header .header-layout-main .header-top-layout-sp .header-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  #header .header-layout-main .header-top-layout-sp .header-bottom .sub {
    padding: 10px;
  }
}
#header #header-navi {
  flex: 1;
  height: 54px;
  background-color: #EC2833;
  padding: 0 3%;
}
@media screen and (max-width: 767px) {
  #header #header-navi {
    padding-bottom: 0;
    flex: 1;
    display: none;
  }
}
#header #header-navi ul {
  display: flex;
  align-items: center;
}
#header #header-navi ul li.top {
  flex: 1;
  border-right: 1px solid #FA737B;
}
#header #header-navi ul li.top a {
  text-align: left;
}
#header #header-navi ul li.single {
  width: 15%;
  border-right: 1px solid #FA737B;
}
#header #header-navi ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  color: #fff;
  line-height: 1.2;
  text-align: center;
  height: 54px;
}
#header #header-navi ul li a:hover {
  background-color: #ff686f;
}
#header #header-navi ul li.parent {
  position: relative;
}
#header #header-navi ul li.parent > .mo {
  cursor: pointer;
  position: relative;
  display: block;
  padding: 18px 10px 17px;
  color: #fff;
  line-height: 1.2;
  text-align: center;
  transition: all 0.3s ease;
}
#header #header-navi ul li.parent > .mo::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -5px;
  width: 7px;
  height: 7px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(45deg) translateY(50%);
}
#header #header-navi ul li.parent > .mo:hover {
  background-color: #ff686f;
}
#header #header-navi ul li.parent.open .mo::after {
  transform: rotate(-135deg) translateY(50%);
  margin-top: 2px;
  margin-right: 5px;
}
#header #header-navi ul li.parent .megamenu-block {
  display: none;
  position: fixed;
  top: 130px;
  left: 0;
  width: 100%;
  background-color: #fff;
  padding: 0 3%;
}
#header #header-navi ul li.parent .megamenu-block ul {
  display: flex;
  justify-content: center;
  gap: 3%;
}
#header #header-navi ul li.parent .megamenu-block ul li a {
  position: relative;
  color: #000;
  padding-left: 15px;
}
#header #header-navi ul li.parent .megamenu-block ul li a::before {
  content: "";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  left: 0;
  top: 50%;
  margin-top: -3px;
  border-top: 1px solid #EC2833;
  border-right: 1px solid #EC2833;
  transform: rotate(45deg);
}
#header #header-navi ul li.parent .megamenu-block ul li a:hover {
  text-decoration: underline;
  color: #EC2833;
  background-color: #fff;
}

#sp-mm {
  position: relative;
  height: 50px;
  width: 50px;
  cursor: pointer;
  z-index: 200;
  display: none;
}
@media screen and (max-width: 767px) {
  #sp-mm {
    display: block;
  }
}
#sp-mm:focus-visible {
  outline: solid;
}
#sp-mm:hover .sp-mm-btn span:before {
  top: -10px;
}
#sp-mm:hover .sp-mm-btn span:after {
  bottom: -10px;
}
#sp-mm .sp-mm-btn {
  position: relative;
  width: 50px;
  height: 50px;
  margin: auto;
  background-color: #EC2833;
}
#sp-mm .sp-mm-btn span {
  display: block;
  position: absolute;
  width: 60%;
  height: 2px;
  transition: all 0.3s ease;
  background-color: #fff;
  top: 50%;
  left: 20%;
}
#sp-mm .sp-mm-btn span:before, #sp-mm .sp-mm-btn span:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  transition: all 0.3s ease;
  background-color: #fff;
  transform-origin: center;
}
#sp-mm .sp-mm-btn span:before {
  top: -8px;
}
#sp-mm .sp-mm-btn span:after {
  bottom: -8px;
}
#sp-mm.close .sp-mm-btn span {
  background-color: transparent;
}
#sp-mm.close .sp-mm-btn span:before {
  animation: close1 0.3s cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
}
#sp-mm.close .sp-mm-btn span:after {
  animation: close2 0.3s cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
}
@keyframes close1 {
  0% {
    top: 23px;
    transform: rotate(0);
  }
  50% {
    top: 0px;
    transform: rotate(0);
  }
  100% {
    top: 0px;
    transform: rotate(-45deg);
  }
}
@keyframes close2 {
  0% {
    bottom: 23px;
    transform: rotate(0);
  }
  50% {
    bottom: 0px;
    transform: rotate(0);
  }
  100% {
    bottom: 0px;
    transform: rotate(45deg);
  }
}

#sp-menu {
  display: none;
  position: fixed;
  top: 130px;
  left: 20px;
  width: calc(100% - 40px);
  height: calc(100vh - 140px);
  z-index: 100;
  background-color: #fff;
  border-radius: 6px;
  padding-block: 50px;
}
@media screen and (max-width: 767px) {
  #sp-menu {
    top: 80px;
    height: calc(100vh - 80px);
    width: 100%;
    left: 0;
    overflow-y: scroll;
    padding-top: 0;
  }
}
#sp-menu .inner {
  display: block;
  padding: 0 0;
}
#sp-menu .inner .col {
  width: 100%;
}
#sp-menu ul {
  margin-bottom: 0;
  padding-bottom: 20px;
}
#sp-menu ul li {
  margin-bottom: 0;
  border-bottom: 1px solid #ff8080;
}
#sp-menu ul li a {
  position: relative;
  display: block;
  padding: 12px 0;
  padding: 12px 5%;
  font-size: clamp(1.3rem, 1.1153846154rem + 0.2403846154vw, 1.5rem);
}
@media screen and (max-width: 767px) {
  #sp-menu ul li a {
    font-size: 1.5rem;
  }
}
#sp-menu ul li a:hover {
  color: #EC2833;
  text-decoration: underline;
}
#sp-menu ul li a::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -4.5454545455px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #EC2833;
  border-right: 1px solid #EC2833;
  transform: rotate(45deg);
}
#sp-menu ul li.parent > a::after {
  content: "";
  position: absolute;
  display: block;
  width: 11px;
  height: 1px;
  background-color: #EC2833;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  margin-top: 0;
}
#sp-menu ul li.parent > a::before {
  content: "";
  position: absolute;
  display: block;
  width: 1px;
  height: 11px;
  background-color: #EC2833;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}
#sp-menu ul li.parent ul {
  display: none;
  padding: 0 5%;
  border-top: 1px solid #ff8080;
  background-color: #fff6f6;
}
#sp-menu ul li.parent ul li {
  border-bottom: 1px dotted #ff8080;
}
#sp-menu ul li.parent ul li:last-child {
  border-bottom: none;
}
#sp-menu ul li.parent ul a {
  padding: 12px 20px 12px 0;
  line-height: 130%;
}
#sp-menu ul li.parent ul a::after {
  content: "";
  position: absolute;
  right: 0px;
  top: 50%;
  margin-top: -4.5454545455px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #EC2833;
  border-right: 1px solid #EC2833;
  transform: rotate(45deg);
}

/* FOOTER
================================================== */
#footer {
  background-color: #F8F8F8;
}
@media screen and (max-width: 767px) {
  #footer {
    padding-bottom: 40px;
  }
}
#footer #footer-menu {
  position: relative;
  padding: 50px 0;
  display: flex;
}
@media screen and (max-width: 767px) {
  #footer #footer-menu {
    display: none;
  }
}
#footer #footer-menu #footer-logo {
  width: 115px;
  margin-right: 5%;
}
#footer #footer-menu-layout {
  display: flex;
  gap: 25px;
  width: calc(100% - 115px);
  padding-top: 1rem;
}
#footer #footer-menu-layout .col {
  width: 50%;
}
#footer #footer-menu-layout .col .row {
  display: flex;
}
#footer #footer-menu-layout .parent-title {
  margin-bottom: 1rem;
  width: 120px;
  font-size: clamp(1.2rem, 1.0153846154rem + 0.2403846154vw, 1.4rem);
}
@media screen and (max-width: 767px) {
  #footer #footer-menu-layout .parent-title {
    font-size: 1.4rem;
  }
}
#footer #footer-menu-layout .parent-title.single {
  margin-bottom: 2rem;
}
#footer #footer-menu-layout .sub-title {
  font-size: clamp(1.2rem, 1.0153846154rem + 0.2403846154vw, 1.4rem);
}
@media screen and (max-width: 767px) {
  #footer #footer-menu-layout .sub-title {
    font-size: 1.4rem;
  }
}
#footer #footer-menu-layout .child-menu li a {
  font-size: clamp(1.2rem, 1.0153846154rem + 0.2403846154vw, 1.4rem);
}
@media screen and (max-width: 767px) {
  #footer #footer-menu-layout .child-menu li a {
    font-size: 1.4rem;
  }
}
#footer #footer-menu-layout .child-menu li a {
  margin-bottom: 1rem;
}
#footer #footer-menu-layout .child-menu li a:hover {
  color: #EC2833;
}
#footer #footer-menu-layout .singles li a {
  font-size: clamp(1.2rem, 1.0153846154rem + 0.2403846154vw, 1.4rem);
}
@media screen and (max-width: 767px) {
  #footer #footer-menu-layout .singles li a {
    font-size: 1.4rem;
  }
}
#footer #footer-menu-layout .singles li a:hover {
  color: #EC2833;
}
#footer #footer-middle {
  border-top: 1px solid #E2DBC9;
  padding-block: 15px 50px;
}
#footer #footer-middle ul {
  display: flex;
  gap: 5%;
}
#footer #footer-middle ul li a {
  font-size: clamp(1.2rem, 1.0153846154rem + 0.2403846154vw, 1.4rem);
}
@media screen and (max-width: 767px) {
  #footer #footer-middle ul li a {
    font-size: 1.4rem;
  }
}
#footer #footer-middle ul li a:hover {
  color: #EC2833;
}
#footer #footer-address {
  border-top: 1px solid #E2DBC9;
  font-size: clamp(1.2rem, 1.0153846154rem + 0.2403846154vw, 1.4rem);
}
@media screen and (max-width: 767px) {
  #footer #footer-address {
    font-size: 1.4rem;
  }
}
#footer #footer-address {
  padding-block: 15px 50px;
}
#footer #footer-bottom {
  font-size: clamp(1rem, 0.9076923077rem + 0.1201923077vw, 1.1rem);
}
@media screen and (max-width: 767px) {
  #footer #footer-bottom {
    font-size: 1.1rem;
  }
}
#footer #footer-bottom {
  padding-bottom: 5vw;
}
@media screen and (max-width: 767px) {
  #footer #footer-bottom {
    padding-top: 20px;
  }
}

#pagetop {
  position: fixed;
  right: 5%;
  bottom: 5%;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 76px;
  height: 76px;
  line-height: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.5);
}
#pagetop:hover {
  background-color: #ccc;
}
#pagetop a {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes pagetop {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-4px);
  }
}
/* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;
  transition: all 0.15s ease-out;
}

/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  transition: all 0.15s ease-out;
}

/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

#modal-overlay {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  max-width: 1175px;
  margin: auto;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
  padding: 5px 0;
}
.modal .scroll-area {
  overflow-y: scroll;
  height: 100%;
  background-color: #fff;
  border-radius: 15px;
  padding: 20px 5%;
}
.modal .scroll-area::-webkit-scrollbar {
  width: 2px;
}
.modal .scroll-area::-webkit-scrollbar-thumb {
  background-color: #ccc;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}
.modal .scroll-area::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}
.modal .modal-close {
  position: absolute;
  cursor: pointer;
  z-index: 1;
  width: 30px;
  height: 30px;
  right: 15px;
  top: 25px;
}
.modal .modal-close::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal .modal-close::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modal .modal-close:focus-visible {
  outline: solid 2px #000;
}

/* TOP PAGE
================================================== */
#top #visual {
  position: relative;
  height: clamp(380px, 30vw, 620px);
  background: url(/insurance/assets/image/top/visual.jpg) no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  #top #visual {
    height: auto;
  }
}
#top #visual .copy {
  position: absolute;
  top: 60px;
  font-weight: 200;
  font-size: clamp(2.8rem, 3vw, 3.3rem);
}
@media screen and (max-width: 767px) {
  #top #visual .copy {
    top: auto;
    bottom: 20px;
    font-size: 5.5vw;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 10px 20px;
  }
}
#top #visual .copy b {
  color: #EC2833;
}
@media screen and (max-width: 767px) {
  #top #visual .inner {
    padding: 0;
  }
}
#top #visual #news {
  position: absolute;
  max-width: 964px;
  width: 100%;
  margin: auto;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  #top #visual #news {
    position: relative;
    left: 0;
    bottom: 0;
    transform: none;
  }
}
#top #visual #news h2 {
  background-color: #EC2833;
  color: #fff;
  text-align: center;
  font-size: clamp(1.3rem, 1.1153846154rem + 0.2403846154vw, 1.5rem);
}
@media screen and (max-width: 767px) {
  #top #visual #news h2 {
    font-size: 1.5rem;
  }
}
#top #visual #news h2 {
  font-weight: 500;
  padding: 10px 0;
}
#top #visual #news .news-inner {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 28px 3%;
  display: flex;
}
@media screen and (max-width: 767px) {
  #top #visual #news .news-inner {
    padding: 1rem 3% 2rem;
    line-height: 1.5;
  }
}
#top #visual #news .news-inner ul {
  flex: 1;
}
#top #visual #news .news-inner ul li {
  display: flex;
  gap: 3%;
}
@media screen and (max-width: 767px) {
  #top #visual #news .news-inner ul li {
    display: block;
  }
}
#top #visual #news .news-inner ul li .date {
  width: 80px;
}
@media screen and (max-width: 767px) {
  #top #visual #news .news-inner ul li .date {
    width: 100%;
    display: block;
  }
}
#top #visual #news .news-inner ul li .text {
  flex: 1;
}
#top #visual #news .news-inner ul li a {
  text-decoration: underline;
}
#top #visual #news .news-inner .more {
  width: 100px;
  background-color: #fff;
  border-radius: 50px;
  line-height: 1;
  padding: 7px 24px;
  font-size: clamp(1.1rem, 0.9153846154rem + 0.2403846154vw, 1.3rem);
}
@media screen and (max-width: 767px) {
  #top #visual #news .news-inner .more {
    font-size: 1.3rem;
  }
}
#top #visual #news .news-inner .more {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  #top #visual #news .news-inner .more {
    position: absolute;
    right: 10px;
    top: 10px;
  }
}
#top .section-block {
  margin-top: 40px;
}
#top .section-block .content-layout {
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  #top .section-block .content-layout {
    display: block;
  }
}
#top .section-block .content-layout .col {
  width: 50%;
}
@media screen and (max-width: 767px) {
  #top .section-block .content-layout .col {
    width: 100%;
  }
}
#top .section-block .content-layout .col h2 {
  text-align: center;
  color: #4191D1;
  margin-bottom: 15px;
  font-weight: 500;
}
#top .section-block .content-layout .col ul {
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  #top .section-block .content-layout .col ul {
    display: block;
  }
}
#top .section-block .content-layout .col ul li {
  width: 50%;
}
@media screen and (max-width: 767px) {
  #top .section-block .content-layout .col ul li {
    width: 100%;
    margin-bottom: 1rem;
  }
}
#top .section-block .content-layout .col ul li a {
  display: block;
  line-height: 1.8;
  color: #fff;
  border-radius: 10px;
  background-color: #4191D1;
  text-align: center;
  padding: 20px 2%;
  font-size: clamp(1.4rem, 1.1230769231rem + 0.3605769231vw, 1.7rem);
}
@media screen and (max-width: 767px) {
  #top .section-block .content-layout .col ul li a {
    font-size: 1.7rem;
  }
}
#top .section-block .content-layout .col ul li a {
  font-weight: 500;
}
#top .section-block .content-layout .col ul li a:hover {
  opacity: 0.8;
}
#top .section-block .content-layout .col ul li a small {
  display: block;
  font-size: clamp(0.9rem, 0.8076923077rem + 0.1201923077vw, 1rem);
}
@media screen and (max-width: 767px) {
  #top .section-block .content-layout .col ul li a small {
    font-size: 1rem;
  }
}
#top .section-block .content-layout .col ul li a small {
  font-weight: 400;
}
#top .section-block .content-layout .col.col2 h2 {
  color: #E59736;
}
#top .section-block .content-layout .col.col2 ul li a {
  background-color: #E59736;
}

/* COOP CHECK
================================================== */
#coop_check #visual {
  position: relative;
  background: url(/insurance/assets/image/coop/visual-check.jpg) no-repeat center center;
  background-size: cover;
  padding: 100px 3%;
}
#coop_check #visual .inner {
  max-width: 820px;
  margin: auto;
  background-color: rgba(65, 145, 209, 0.9);
  padding: 80px 3% 20px;
}
#coop_check #visual .inner h1 {
  text-align: center;
  color: #fff;
  font-weight: 500;
  font-size: clamp(1.7rem, 1.4230769231rem + 0.3605769231vw, 2rem);
}
@media screen and (max-width: 767px) {
  #coop_check #visual .inner h1 {
    font-size: 2rem;
  }
}
#coop_check #visual .inner h1 {
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  #coop_check #visual .inner h1 {
    font-size: 4.7vw;
  }
}
#coop_check #visual .inner .layout {
  display: flex;
  justify-content: center;
  gap: 3%;
  margin-bottom: 30px;
}
#coop_check #visual .inner .layout a {
  background-color: #fff;
  color: #4191D1;
  line-height: 1;
  text-align: center;
  padding: 20px;
  border-radius: 100px;
  max-width: 234px;
  width: 50%;
}
#coop_check #visual .inner .layout a:hover {
  background-color: #EC2833;
  color: #fff;
}
#coop_check #visual .inner .group {
  text-align: right;
}
#coop_check #visual .inner .group a {
  color: #fff;
  text-decoration: underline;
}

/* COOP
================================================== */
#coop {
  background-color: #EFF7FF;
}
#coop #visual {
  position: relative;
  background: url(/insurance/assets/image/coop/visual.jpg) no-repeat center center;
  background-size: cover;
}
#coop #visual .inner {
  height: 320px;
  position: relative;
}
@media screen and (max-width: 767px) {
  #coop #visual .inner {
    height: 160px;
    padding: 0;
  }
}
#coop #visual .inner h1 {
  position: absolute;
  bottom: 80px;
  left: 3%;
  font-weight: 500;
  font-size: clamp(3rem, 3vw, 4.6rem);
}
@media screen and (max-width: 767px) {
  #coop #visual .inner h1 {
    width: 100%;
    bottom: 0px;
    font-size: 5vw;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 10px 20px;
    left: 0;
  }
}
#coop .content-block {
  padding: 80px 0 0;
}
@media screen and (max-width: 767px) {
  #coop .content-block {
    padding-top: 40px;
  }
}
#coop .content-block h2 {
  background-color: #fff;
  text-align: center;
  color: #519AD5;
  font-weight: 500;
  font-size: clamp(2.8rem, 2.4307692308rem + 0.4807692308vw, 3.2rem);
}
@media screen and (max-width: 767px) {
  #coop .content-block h2 {
    font-size: 3.2rem;
  }
}
#coop .content-block h2 {
  letter-spacing: 2px;
  line-height: 1;
  padding: 25px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  #coop .content-block h2 {
    font-size: 2rem;
  }
}
#coop .content-block .announce {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  #coop .content-block .announce {
    display: block;
  }
}
#coop .content-block .announce p {
  padding-right: 30px;
}
#coop .content-block .announce p a {
  text-decoration: underline;
}
#coop .content-block .announce .logo {
  width: 136px;
  line-height: 0;
}
@media screen and (max-width: 767px) {
  #coop .content-block .announce .logo {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
  }
  #coop .content-block .announce .logo img {
    width: 136px;
  }
}
#coop .content-block .section-block {
  max-width: 1032px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 767px) {
  #coop .content-block .section-block {
    padding: 0;
  }
}
#coop .content-block .section-block h3 {
  color: #fff;
  background-color: #519AD5;
  font-size: clamp(2.8rem, 2.4307692308rem + 0.4807692308vw, 3.2rem);
}
@media screen and (max-width: 767px) {
  #coop .content-block .section-block h3 {
    font-size: 3.2rem;
  }
}
#coop .content-block .section-block h3 {
  border-radius: 30px 30px 0 0;
  padding: 25px 3% 25px 8%;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  #coop .content-block .section-block h3 {
    font-size: 2rem;
    padding-block: 20px;
  }
}
#coop .content-block .section-block .section-inner {
  background-color: #fff;
  padding: 45px 8%;
  border-radius: 0 0 30px 30px;
}
@media screen and (max-width: 767px) {
  #coop .content-block .section-block .section-inner {
    padding-bottom: 20px;
  }
}
#coop .content-block .section-block .section-inner p {
  font-size: clamp(1.1rem, 0.9153846154rem + 0.2403846154vw, 1.3rem);
}
@media screen and (max-width: 767px) {
  #coop .content-block .section-block .section-inner p {
    font-size: 1.3rem;
  }
}
#coop .content-block .section-block .section-inner p {
  line-height: 1.8;
  margin-bottom: 30px;
}
#coop .content-block .section-block .section-inner .lead {
  font-weight: 500;
  font-size: clamp(1.5rem, 1.2230769231rem + 0.3605769231vw, 1.8rem);
}
@media screen and (max-width: 767px) {
  #coop .content-block .section-block .section-inner .lead {
    font-size: 1.8rem;
  }
}
#coop .content-block .section-block .section-inner .lead {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  #coop .content-block .section-block .section-inner .lead {
    font-size: 1.5rem;
  }
}
#coop .content-block .section-block .section-inner .lead .note {
  font-size: clamp(1.1rem, 0.9153846154rem + 0.2403846154vw, 1.3rem);
}
@media screen and (max-width: 767px) {
  #coop .content-block .section-block .section-inner .lead .note {
    font-size: 1.3rem;
  }
}
#coop .content-block .section-block .section-inner .lead .note a {
  font-weight: bold;
}
#coop .content-block .section-block .section-inner .contact {
  display: flex;
  align-items: center;
  font-size: clamp(1.1rem, 0.9153846154rem + 0.2403846154vw, 1.3rem);
}
@media screen and (max-width: 767px) {
  #coop .content-block .section-block .section-inner .contact {
    font-size: 1.3rem;
  }
}
#coop .content-block .section-block .section-inner .contact {
  margin-bottom: 50px;
  gap: 5%;
}
@media screen and (max-width: 767px) {
  #coop .content-block .section-block .section-inner .contact {
    display: block;
    margin-bottom: 20px;
  }
}
#coop .content-block .section-block .section-inner .contact p {
  line-height: 2;
  margin-bottom: 0;
}
#coop .content-block .section-block .section-inner .contact .tel .number {
  color: #519AD5;
  font-weight: bold;
  letter-spacing: 2px;
  font-size: clamp(3.6rem, 3.2307692308rem + 0.4807692308vw, 4rem);
}
@media screen and (max-width: 767px) {
  #coop .content-block .section-block .section-inner .contact .tel .number {
    font-size: 4rem;
  }
}
#coop .content-block .section-block .section-inner .contact .tel .number {
  margin-left: 15px;
}
@media screen and (max-width: 767px) {
  #coop .content-block .section-block .section-inner .contact .tel .number {
    font-size: 8vw;
  }
}
#coop .content-block .section-block .section-inner .faq {
  background-color: #4191D1;
  border-radius: 10px;
  padding: 24px 5%;
}
#coop .content-block .section-block .section-inner .faq h4 {
  color: #fff;
  font-weight: 500;
  font-size: clamp(1.5rem, 1.2230769231rem + 0.3605769231vw, 1.8rem);
}
@media screen and (max-width: 767px) {
  #coop .content-block .section-block .section-inner .faq h4 {
    font-size: 1.8rem;
  }
}
#coop .content-block .section-block .section-inner .faq h4 {
  margin-bottom: 30px;
  text-align: center;
}
#coop .content-block .section-block .section-inner .faq ul {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  #coop .content-block .section-block .section-inner .faq ul {
    display: block;
  }
}
#coop .content-block .section-block .section-inner .faq ul li {
  width: 33.333%;
  max-width: 200px;
}
@media screen and (max-width: 767px) {
  #coop .content-block .section-block .section-inner .faq ul li {
    width: 100%;
    max-width: none;
    margin-bottom: 5px;
  }
}
#coop .content-block .section-block .section-inner .faq ul li a {
  display: block;
  background-color: #fff;
  color: #4191D1;
  text-align: center;
  padding: 10px;
  border-radius: 100px;
  font-size: clamp(1.3rem, 1.1153846154rem + 0.2403846154vw, 1.5rem);
}
@media screen and (max-width: 767px) {
  #coop .content-block .section-block .section-inner .faq ul li a {
    font-size: 1.5rem;
  }
}
#coop .content-block .section-block .section-inner .faq ul li a:hover {
  background-color: #E5F2FF;
}
#coop .content-block .section-block .section-inner .approval {
  text-align: right;
  font-size: clamp(1rem, 0.9076923077rem + 0.1201923077vw, 1.1rem);
}
@media screen and (max-width: 767px) {
  #coop .content-block .section-block .section-inner .approval {
    font-size: 1.1rem;
  }
}
#coop .content-block .section-block .section-inner .approval {
  margin-top: 1rem;
}
#coop .content-block #sec1 .bill {
  background-color: #E5F2FF;
  padding: 24px 5%;
  border-radius: 10px;
  margin-bottom: 30px;
}
#coop .content-block #sec1 .bill h4 {
  font-weight: 500;
  font-size: clamp(1.5rem, 1.2230769231rem + 0.3605769231vw, 1.8rem);
}
@media screen and (max-width: 767px) {
  #coop .content-block #sec1 .bill h4 {
    font-size: 1.8rem;
  }
}
#coop .content-block #sec1 .bill h4 {
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
}
#coop .content-block #sec1 .bill .layout {
  display: flex;
  gap: 5%;
}
@media screen and (max-width: 767px) {
  #coop .content-block #sec1 .bill .layout {
    display: block;
  }
}
#coop .content-block #sec1 .bill .layout .image {
  width: 136px;
}
@media screen and (max-width: 767px) {
  #coop .content-block #sec1 .bill .layout .image {
    margin: auto;
  }
}
#coop .content-block #sec1 .bill .layout .text {
  flex: 1;
}
#coop .content-block #sec1 .bill .layout .text p {
  font-size: clamp(1.3rem, 1.1153846154rem + 0.2403846154vw, 1.5rem);
}
@media screen and (max-width: 767px) {
  #coop .content-block #sec1 .bill .layout .text p {
    font-size: 1.5rem;
  }
}
#coop .content-block #sec1 .bill .layout .text p {
  margin-bottom: 0;
}
#coop .content-block #sec1 .bill .layout .text p a {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  #coop .content-block #sec2 .section-inner {
    padding-bottom: 20px;
  }
}
#coop .content-block #sec2 .section-inner p a {
  text-decoration: underline;
}
#coop .content-block #sec2 .section-inner .holiday {
  color: #a00;
  font-weight: bold;
}
#coop .content-block #sec2 .estimate {
  background-color: #E5F2FF;
  border-radius: 10px;
  padding: 24px 5%;
  margin-bottom: 30px;
}
#coop .content-block #sec2 .estimate h4 {
  font-weight: 500;
  font-size: clamp(1.5rem, 1.2230769231rem + 0.3605769231vw, 1.8rem);
}
@media screen and (max-width: 767px) {
  #coop .content-block #sec2 .estimate h4 {
    font-size: 1.8rem;
  }
}
#coop .content-block #sec2 .estimate h4 {
  text-align: center;
  margin-bottom: 20px;
}
#coop .content-block #sec2 .estimate ul {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  #coop .content-block #sec2 .estimate ul {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  #coop .content-block #sec2 .estimate ul li {
    width: 100%;
    max-width: none;
    margin-bottom: 5px;
  }
}
#coop .content-block #sec2 .estimate ul li a {
  font-size: clamp(1.3rem, 1.1153846154rem + 0.2403846154vw, 1.5rem);
}
@media screen and (max-width: 767px) {
  #coop .content-block #sec2 .estimate ul li a {
    font-size: 1.5rem;
  }
}
#coop .content-block #sec2 .estimate ul li a {
  display: block;
  background-color: #fff;
  color: #4191D1;
  text-align: center;
  padding: 10px 20px;
  border-radius: 100px;
}
#coop .content-block #sec2 .estimate ul li a:hover {
  background-color: #4191D1;
  color: #fff;
}
#coop .content-block #sec2 .estimate ul li .separate {
  display: inline-block;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  #coop .content-block #sec2 .estimate ul li .separate {
    display: none;
  }
}
#coop .content-block #sec3 .section-inner .layout {
  display: flex;
}
@media screen and (max-width: 767px) {
  #coop .content-block #sec3 .section-inner .layout {
    display: block;
  }
}
#coop .content-block #sec3 .section-inner .layout .logo {
  width: 212px;
  margin-right: 35px;
}
@media screen and (max-width: 767px) {
  #coop .content-block #sec3 .section-inner .layout .logo {
    margin: auto;
  }
}
#coop .content-block #sec3 .section-inner .layout .contact {
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  #coop .content-block #sec3 .section-inner .layout .contact {
    text-align: center;
  }
}
#coop .content-block #sec3 .section-inner .layout .contact a {
  text-decoration: underline;
}
#coop .content-block#car .section-inner .content-box {
  background-color: #E5F2FF;
  border-radius: 10px;
  padding: 24px 5%;
  margin-bottom: 30px;
}
#coop .content-block#car .section-inner .content-box h4 {
  font-weight: 500;
  font-size: clamp(1.5rem, 1.2230769231rem + 0.3605769231vw, 1.8rem);
}
@media screen and (max-width: 767px) {
  #coop .content-block#car .section-inner .content-box h4 {
    font-size: 1.8rem;
  }
}
#coop .content-block#car .section-inner .content-box h4 {
  text-align: center;
  margin-bottom: 20px;
}
#coop .content-block#car .section-inner .content-box p {
  font-size: clamp(1.3rem, 1.1153846154rem + 0.2403846154vw, 1.5rem);
}
@media screen and (max-width: 767px) {
  #coop .content-block#car .section-inner .content-box p {
    font-size: 1.5rem;
  }
}
#coop .content-block#car .section-inner .content-box p {
  margin-bottom: 0;
}
#coop .content-block#car .section-inner .content-box p b {
  color: #EC2833;
}
#coop .content-block#car .section-inner .content-box .note {
  margin-top: 2rem;
  font-size: clamp(1.1rem, 0.9153846154rem + 0.2403846154vw, 1.3rem);
}
@media screen and (max-width: 767px) {
  #coop .content-block#car .section-inner .content-box .note {
    font-size: 1.3rem;
  }
}
#coop .content-block#car .section-inner .content-box.factory {
  background-color: #4191D1;
  color: #fff;
}

/* GROUP
================================================== */
#group {
  background-color: #EFF7FF;
}
#group #visual {
  position: relative;
  background: url(/insurance/assets/image/group/visual.jpg) no-repeat center center;
  background-size: cover;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  #group #visual {
    margin-bottom: 30px;
  }
}
#group #visual .inner {
  height: 320px;
  position: relative;
}
@media screen and (max-width: 767px) {
  #group #visual .inner {
    height: 160px;
    padding: 0;
  }
}
#group #visual .inner h1 {
  position: absolute;
  bottom: 80px;
  left: 3%;
  font-weight: 500;
  font-size: clamp(3rem, 3vw, 4.6rem);
}
@media screen and (max-width: 767px) {
  #group #visual .inner h1 {
    width: 100%;
    bottom: 0px;
    font-size: 5vw;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 10px 20px;
    left: 0;
  }
}
#group .section-block p.first {
  margin-bottom: 40px;
}
#group .section-block .section-inner {
  background-color: #fff;
  border-radius: 30px;
  padding: 70px 5%;
}
#group .section-block .section-inner .graph {
  margin-bottom: 60px;
}
#group .section-block .section-inner .graph h2 {
  text-align: center;
  color: #539BD5;
  font-weight: 500;
  font-size: clamp(2.8rem, 2.4307692308rem + 0.4807692308vw, 3.2rem);
}
@media screen and (max-width: 767px) {
  #group .section-block .section-inner .graph h2 {
    font-size: 3.2rem;
  }
}
#group .section-block .section-inner .graph h2 {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  #group .section-block .section-inner .graph h2 {
    font-size: 2.4rem;
  }
}
#group .section-block .section-inner .graph .image {
  text-align: center;
  margin-bottom: 40px;
}
#group .section-block .section-inner .graph .support p {
  text-align: center;
  color: #539BD5;
  font-size: clamp(1.3rem, 1.1153846154rem + 0.2403846154vw, 1.5rem);
}
@media screen and (max-width: 767px) {
  #group .section-block .section-inner .graph .support p {
    font-size: 1.5rem;
  }
}
#group .section-block .section-inner .graph .support p {
  margin-bottom: 15px;
}
#group .section-block .section-inner .layout {
  display: flex;
  gap: 5%;
  align-items: flex-start;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  #group .section-block .section-inner .layout {
    display: block;
  }
}
#group .section-block .section-inner .layout .col {
  width: 50%;
}
@media screen and (max-width: 767px) {
  #group .section-block .section-inner .layout .col {
    width: 100%;
  }
}
#group .section-block .section-inner .layout .col1 {
  background-color: #EFF7FF;
  border-radius: 30px;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  #group .section-block .section-inner .layout .col1 {
    padding: 40px 5%;
    margin-bottom: 20px;
  }
}
#group .section-block .section-inner .layout .col1 h3 {
  color: #539BD5;
  font-weight: 500;
  font-size: clamp(1.3rem, 1.1153846154rem + 0.2403846154vw, 1.5rem);
}
@media screen and (max-width: 767px) {
  #group .section-block .section-inner .layout .col1 h3 {
    font-size: 1.5rem;
  }
}
#group .section-block .section-inner .layout .col1 h3 {
  margin-bottom: 30px;
  padding-left: 10px;
  line-height: 1;
  border-left: 4px solid #539BD5;
  margin-bottom: 25px;
}
#group .section-block .section-inner .layout .col1 p {
  font-size: clamp(1.3rem, 1.1153846154rem + 0.2403846154vw, 1.5rem);
}
@media screen and (max-width: 767px) {
  #group .section-block .section-inner .layout .col1 p {
    font-size: 1.5rem;
  }
}
#group .section-block .section-inner .layout .col1 p {
  line-height: 1.8;
  margin-bottom: 2rem;
}
#group .section-block .section-inner .layout .col1 ul {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  #group .section-block .section-inner .layout .col1 ul {
    display: block;
  }
}
#group .section-block .section-inner .layout .col1 ul li {
  position: relative;
  width: 50%;
  font-size: clamp(1.3rem, 1.1153846154rem + 0.2403846154vw, 1.5rem);
}
@media screen and (max-width: 767px) {
  #group .section-block .section-inner .layout .col1 ul li {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  #group .section-block .section-inner .layout .col1 ul li {
    width: 100%;
  }
}
#group .section-block .section-inner .layout .col1 ul li::before {
  content: "●";
  display: inline-block;
  color: #539BD5;
  margin-right: 5px;
  font-size: 6px;
  padding-bottom: 10px;
  position: relative;
  bottom: 3px;
}
#group .section-block .section-inner .layout .col2 {
  border: 1px solid #539BD5;
  border-radius: 30px;
}
#group .section-block .section-inner .layout .col2 h3 {
  background-color: #539BD5;
  color: #fff;
  font-weight: 500;
  border-radius: 30px 30px 0 0;
  padding: 20px 5%;
  text-align: center;
}
#group .section-block .section-inner .layout .col2 .col-in {
  padding: 30px 3%;
  text-align: center;
}
#group .section-block .section-inner .layout .col2 .col-in p {
  margin-bottom: 15px;
}
#group .section-block .section-inner .layout .col2 .col-in a {
  background-color: #EFF7FF;
  text-align: center;
  padding: 8px 24px;
  border-radius: 100px;
  font-size: clamp(1.3rem, 1.1153846154rem + 0.2403846154vw, 1.5rem);
}
@media screen and (max-width: 767px) {
  #group .section-block .section-inner .layout .col2 .col-in a {
    font-size: 1.5rem;
  }
}
#group .section-block .section-inner .seminar h2 {
  background-color: #519AD5;
  color: #fff;
  font-size: clamp(1.9rem, 1.6230769231rem + 0.3605769231vw, 2.2rem);
}
@media screen and (max-width: 767px) {
  #group .section-block .section-inner .seminar h2 {
    font-size: 2.2rem;
  }
}
#group .section-block .section-inner .seminar h2 {
  font-weight: 500;
  padding: 8px 3% 10px;
  line-height: 1;
  text-align: left;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  #group .section-block .section-inner .seminar h2 {
    margin-bottom: 20px;
  }
}
#group .section-block .section-inner .seminar .layout {
  padding: 0 3%;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  #group .section-block .section-inner .seminar .layout {
    display: block;
    padding: 0;
  }
}
#group .section-block .section-inner .seminar .layout p {
  width: 50%;
}
@media screen and (max-width: 767px) {
  #group .section-block .section-inner .seminar .layout p {
    width: 100%;
    margin-bottom: 20px;
  }
}
#group .section-block .section-inner .seminar .layout .image {
  width: 50%;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  #group .section-block .section-inner .seminar .layout .image {
    width: 100%;
  }
}

/* INDIVIDUAL
================================================== */
#individual {
  background-color: #FDF8F5;
}
#individual #visual {
  position: relative;
  background: url(/insurance/assets/image/individual/visual.jpg) no-repeat center center;
  background-size: cover;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  #individual #visual {
    margin-bottom: 30px;
  }
}
#individual #visual .inner {
  height: 320px;
  position: relative;
}
@media screen and (max-width: 767px) {
  #individual #visual .inner {
    height: 160px;
    padding: 0;
  }
}
#individual #visual .inner h1 {
  position: absolute;
  bottom: 80px;
  left: 3%;
  font-weight: 500;
  font-size: clamp(3rem, 3vw, 4.6rem);
}
@media screen and (max-width: 767px) {
  #individual #visual .inner h1 {
    width: 100%;
    bottom: 0px;
    font-size: 5vw;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 10px 20px;
    left: 0;
  }
}
#individual .section-block p.first {
  margin-bottom: 40px;
}
#individual .section-block .content-layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#individual .section-block .box {
  width: 49%;
  margin-bottom: 38px;
}
@media screen and (max-width: 767px) {
  #individual .section-block .box {
    width: 100%;
    margin-bottom: 20px;
  }
}
#individual .section-block .box h2 {
  background-color: #E59736;
  text-align: center;
  padding: 16px;
  line-height: 1.2;
  color: #fff;
  font-weight: 500;
  border-radius: 30px 30px 0 0;
}
#individual .section-block .box .box-in {
  background-color: #fff;
  border-radius: 0 0 30px 30px;
  padding: 30px 8%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #individual .section-block .box .box-in {
    padding: 30px 5%;
  }
}
#individual .section-block .box .box-in p {
  font-size: clamp(1.1rem, 0.9153846154rem + 0.2403846154vw, 1.3rem);
}
@media screen and (max-width: 767px) {
  #individual .section-block .box .box-in p {
    font-size: 1.3rem;
  }
}
#individual .section-block .box .box-in p {
  line-height: 1.5;
}
#individual .section-block .box .box-in .note {
  font-size: clamp(0.9rem, 0.8076923077rem + 0.1201923077vw, 1rem);
}
@media screen and (max-width: 767px) {
  #individual .section-block .box .box-in .note {
    font-size: 1rem;
  }
}
#individual .section-block .box .box-in .note {
  margin-top: 1rem;
}
#individual .section-block .box .box-in .layout {
  display: flex;
  gap: 16px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  #individual .section-block .box .box-in .layout {
    display: block;
  }
}
#individual .section-block .box .box-in .layout .image {
  width: 35%;
}
@media screen and (max-width: 767px) {
  #individual .section-block .box .box-in .layout .image {
    width: 100%;
  }
}
#individual .section-block .box .box-in .layout .image img {
  max-width: 136px;
}
#individual .section-block .box .box-in .layout p {
  width: 65%;
  text-align: left;
  font-size: clamp(1.1rem, 0.9153846154rem + 0.2403846154vw, 1.3rem);
}
@media screen and (max-width: 767px) {
  #individual .section-block .box .box-in .layout p {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  #individual .section-block .box .box-in .layout p {
    width: 100%;
    font-size: 1.1rem;
  }
}
#individual .section-block .etc {
  width: 100%;
  max-width: 687px;
  margin: auto;
}
#individual .section-block .etc p {
  margin-bottom: 30px;
}
#individual .section-block .etc a {
  background-color: #FDF8F5;
  text-align: center;
  padding: 8px 24px;
  border-radius: 100px;
  font-size: clamp(1.3rem, 1.1153846154rem + 0.2403846154vw, 1.5rem);
}
@media screen and (max-width: 767px) {
  #individual .section-block .etc a {
    font-size: 1.5rem;
  }
}

/* CORPORATE
================================================== */
#corporate {
  background-color: #FDF8F5;
}
#corporate #visual {
  position: relative;
  background: url(/insurance/assets/image/corporate/visual.jpg) no-repeat center center;
  background-size: cover;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  #corporate #visual {
    margin-bottom: 30px;
  }
}
#corporate #visual .inner {
  height: 320px;
  position: relative;
}
@media screen and (max-width: 767px) {
  #corporate #visual .inner {
    height: 160px;
    padding: 0;
  }
}
#corporate #visual .inner h1 {
  position: absolute;
  bottom: 80px;
  left: 3%;
  font-weight: 500;
  font-size: clamp(3rem, 3vw, 4.6rem);
}
@media screen and (max-width: 767px) {
  #corporate #visual .inner h1 {
    width: 100%;
    bottom: 0px;
    font-size: 5vw;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 10px 20px;
    left: 0;
  }
}
#corporate .section-block p.first {
  margin-bottom: 40px;
}
#corporate .section-block .content-layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#corporate .section-block .box {
  width: 49%;
  margin-bottom: 38px;
}
@media screen and (max-width: 767px) {
  #corporate .section-block .box {
    width: 100%;
  }
}
#corporate .section-block .box h2 {
  background-color: #E59736;
  text-align: center;
  padding: 16px;
  line-height: 1.2;
  color: #fff;
  font-weight: 500;
  border-radius: 30px 30px 0 0;
}
#corporate .section-block .box .box-in {
  background-color: #fff;
  border-radius: 0 0 30px 30px;
  padding: 30px 8%;
}
#corporate .section-block .box .box-in ul li {
  position: relative;
}
@media screen and (max-width: 767px) {
  #corporate .section-block .box .box-in ul li {
    line-height: 1.5;
    font-size: 1.4rem;
  }
}
#corporate .section-block .box .box-in ul li::before {
  content: "●";
  display: inline-block;
  color: #E59736;
  margin-right: 5px;
  font-size: 6px;
  padding-bottom: 10px;
  position: relative;
  bottom: 3px;
}
#corporate .section-block .etc {
  width: 100%;
  max-width: 687px;
  margin: auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #corporate .section-block .etc .box-in {
    padding: 30px 5%;
  }
}
#corporate .section-block .etc p {
  margin-bottom: 30px;
}
#corporate .section-block .etc a {
  background-color: #FDF8F5;
  text-align: center;
  padding: 8px 24px;
  border-radius: 100px;
  font-size: clamp(1.3rem, 1.1153846154rem + 0.2403846154vw, 1.5rem);
}
@media screen and (max-width: 767px) {
  #corporate .section-block .etc a {
    font-size: 1.5rem;
  }
}

/* NEWS
================================================== */
#news {
  background-color: #EFF7FF;
}
#news #visual {
  background-color: #fff;
  height: 200px;
  border-bottom: 1px solid #519AD5;
}
@media screen and (max-width: 767px) {
  #news #visual {
    height: 100px;
    margin-bottom: 20px;
  }
}
#news #visual .inner {
  display: flex;
  align-items: center;
  height: 100%;
}
#news #visual .inner h1 {
  color: #519AD5;
  font-weight: 500;
  font-size: clamp(3rem, 3vw, 4.6rem);
}
@media screen and (max-width: 767px) {
  #news #visual .inner h1 {
    font-size: 2.6rem;
  }
}
#news #content-wrap {
  padding: 50px 0 0;
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  #news #content-wrap {
    display: block;
    padding: 0 3%;
  }
}
#news #content-wrap #list-block {
  flex: 1;
  background-color: #fff;
  border-radius: 30px;
  padding: 40px 5%;
}
@media screen and (max-width: 767px) {
  #news #content-wrap #list-block {
    padding-block: 20px;
    margin-bottom: 30px;
  }
}
#news #content-wrap #list-block .row {
  padding-block: 40px;
  border-bottom: 1px solid #eee;
}
@media screen and (max-width: 767px) {
  #news #content-wrap #list-block .row {
    padding-block: 20px;
  }
}
#news #content-wrap #list-block .row .date {
  color: #519AD5;
  margin-bottom: 1rem;
}
#news #content-wrap #list-block .row .title:hover {
  color: #519AD5;
}
#news #content-wrap #list-block #pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  align-items: center;
  gap: 30px;
}
#news #content-wrap #list-block #pagination .prev,
#news #content-wrap #list-block #pagination .next {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 100px;
}
#news #content-wrap #list-block #pagination .prev:hover,
#news #content-wrap #list-block #pagination .next:hover {
  background-color: #519AD5;
  color: #fff;
}
#news #content-wrap #list-block #pagination .prev:hover::after,
#news #content-wrap #list-block #pagination .next:hover::after {
  border-color: #fff;
}
#news #content-wrap #list-block #pagination .prev::after,
#news #content-wrap #list-block #pagination .next::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
}
#news #content-wrap #list-block #pagination .prev::after {
  width: 12px;
  height: 12px;
  border-left: 1px solid #519AD5;
  border-top: 1px solid #519AD5;
  transform: translate(-50%, -50%) rotate(-45deg);
  left: 55%;
}
#news #content-wrap #list-block #pagination .next::after {
  width: 12px;
  height: 12px;
  border-right: 1px solid #519AD5;
  border-top: 1px solid #519AD5;
  transform: translate(-50%, -50%) rotate(45deg);
  left: 45%;
}
#news #content-wrap #list-block #pagination ul {
  display: flex;
  gap: 8px;
}
#news #content-wrap #list-block #pagination ul li a {
  display: inline-block;
  width: 48px;
  height: 48px;
  padding: 10px 20px;
  font-size: clamp(1.3rem, 1.1153846154rem + 0.2403846154vw, 1.5rem);
}
@media screen and (max-width: 767px) {
  #news #content-wrap #list-block #pagination ul li a {
    font-size: 1.5rem;
  }
}
#news #content-wrap #list-block #pagination ul li a {
  margin: 0 5px;
  color: #519AD5;
  border-radius: 100px;
}
#news #content-wrap #list-block #pagination ul li a.active {
  background-color: #EFF7FF;
}
#news #content-wrap #list-block #pagination ul li a:hover {
  background-color: #519AD5;
  color: #fff;
}
#news #content-wrap #content-block {
  flex: 1;
}
#news #content-wrap #content-block .content-inner {
  background-color: #fff;
  border-radius: 30px;
  padding: 40px 5%;
}
#news #content-wrap #content-block .content-head {
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}
#news #content-wrap #content-block .content-head .row {
  display: flex;
  align-items: center;
  gap: 25px;
}
#news #content-wrap #content-block .content-head .row .date {
  color: #519AD5;
  margin-bottom: 1rem;
}
#news #content-wrap #content-block .content-head .row .category {
  display: inline-block;
  background-color: #EFF7FF;
  border-radius: 50px;
  text-align: center;
  padding: 8px 10px;
  margin: 0 5px 10px 0;
  line-height: 1;
  font-size: clamp(1.3rem, 1.1153846154rem + 0.2403846154vw, 1.5rem);
}
@media screen and (max-width: 767px) {
  #news #content-wrap #content-block .content-head .row .category {
    font-size: 1.5rem;
  }
}
#news #content-wrap #content-block .content-head h2 {
  font-size: clamp(1.5rem, 1.2230769231rem + 0.3605769231vw, 1.8rem);
}
@media screen and (max-width: 767px) {
  #news #content-wrap #content-block .content-head h2 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  #news #content-wrap #content-block .content-head h2 {
    font-size: 1.6rem;
  }
}
#news #content-wrap #content-block .content-body {
  padding-top: 40px;
}
#news #content-wrap #content-block .content-body p {
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  #news #content-wrap #content-block .content-body p {
    font-size: 1.5rem;
  }
}
#news #content-wrap #content-block #move {
  margin-top: 30px;
  background-color: #fff;
  border-radius: 30px;
  padding: 40px 5%;
}
@media screen and (max-width: 767px) {
  #news #content-wrap #content-block #move {
    margin-bottom: 30px;
  }
}
#news #content-wrap #content-block #move ul {
  display: flex;
  justify-content: space-between;
}
#news #content-wrap #content-block #move ul li {
  position: relative;
  width: 33.33%;
}
@media screen and (max-width: 767px) {
  #news #content-wrap #content-block #move ul li {
    font-size: 1.2rem;
  }
}
#news #content-wrap #content-block #move ul li::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
}
#news #content-wrap #content-block #move ul li.prev {
  padding-left: 20px;
}
#news #content-wrap #content-block #move ul li.next {
  padding-right: 20px;
  text-align: right;
}
#news #content-wrap #content-block #move ul li.index {
  text-align: center;
}
#news #content-wrap #content-block #move ul li a:hover {
  color: #519AD5;
}
#news #content-wrap #content-block #move ul .prev::after {
  width: 12px;
  height: 12px;
  border-left: 1px solid #519AD5;
  border-top: 1px solid #519AD5;
  transform: translate(-50%, -50%) rotate(-45deg);
  left: 10px;
}
#news #content-wrap #content-block #move ul .next::after {
  width: 12px;
  height: 12px;
  border-right: 1px solid #519AD5;
  border-top: 1px solid #519AD5;
  transform: translate(-50%, -50%) rotate(45deg);
  right: -3px;
}
#news #content-wrap #side {
  width: 29%;
  max-width: 297px;
}
@media screen and (max-width: 767px) {
  #news #content-wrap #side {
    width: 100%;
    max-width: none;
  }
}
#news #content-wrap #side .side-box {
  margin-bottom: 32px;
}
#news #content-wrap #side .side-box h2 {
  background-color: #519AD5;
  border-radius: 30px 30px 0 0;
  color: #fff;
  padding: 16px;
  font-weight: 500;
  text-align: center;
  line-height: 1;
  padding: 15px;
}
#news #content-wrap #side .side-box .side-box-in {
  background-color: #fff;
  border-radius: 0 0 30px 30px;
  padding: 30px 8%;
  font-size: clamp(1.1rem, 0.9153846154rem + 0.2403846154vw, 1.3rem);
}
@media screen and (max-width: 767px) {
  #news #content-wrap #side .side-box .side-box-in {
    font-size: 1.3rem;
  }
}
#news #content-wrap #side .side-box .side-box-in {
  line-height: 1.8;
}
#news #content-wrap #side .side-box#news-archive ul li {
  padding-block: 1rem;
  border-bottom: 1px solid #eee;
}
#news #content-wrap #side .side-box#news-archive ul li a {
  position: relative;
  display: block;
}
#news #content-wrap #side .side-box#news-archive ul li a::before {
  content: "・ ";
  color: #519AD5;
}
#news #content-wrap #side .side-box#news-archive ul li a:hover {
  color: #519AD5;
}
#news #content-wrap #side .side-box#news-recent ul li {
  padding-block: 1rem;
  border-bottom: 1px solid #eee;
}
#news #content-wrap #side .side-box#news-recent ul li a {
  position: relative;
  display: inline-block;
}
#news #content-wrap #side .side-box#news-recent ul li a:hover {
  color: #519AD5;
}
#news #content-wrap #side .side-box#news-category ul {
  display: flex;
  flex-wrap: wrap;
}
#news #content-wrap #side .side-box#news-category ul a {
  display: inline-block;
  background-color: #EFF7FF;
  border-radius: 50px;
  text-align: center;
  padding: 8px 16px;
  margin: 0 5px 10px 0;
}
#news #content-wrap #side .side-box#news-category ul a:hover {
  background-color: #519AD5;
  color: #fff;
}

/* POLICY
================================================== */
#policy {
  background-color: #EFF7FF;
}
#policy #visual {
  background-color: #fff;
  height: 200px;
  border-bottom: 1px solid #519AD5;
}
@media screen and (max-width: 767px) {
  #policy #visual {
    height: 100px;
    margin-bottom: 20px;
  }
}
#policy #visual .inner {
  display: flex;
  align-items: center;
  height: 100%;
}
#policy #visual .inner h1 {
  color: #519AD5;
  font-weight: 500;
  font-size: clamp(3rem, 3vw, 4.6rem);
}
@media screen and (max-width: 767px) {
  #policy #visual .inner h1 {
    font-size: 2.6rem;
  }
}
#policy .section-block {
  padding: 50px 0 0;
}
@media screen and (max-width: 767px) {
  #policy .section-block {
    padding-top: 0;
  }
}
#policy .section-block .section-inner {
  background-color: #fff;
  border-radius: 30px;
  padding: 40px 5%;
}
#policy .section-block .section-inner h2 {
  background-color: #519AD5;
  color: #fff;
  font-size: clamp(1.9rem, 1.6230769231rem + 0.3605769231vw, 2.2rem);
}
@media screen and (max-width: 767px) {
  #policy .section-block .section-inner h2 {
    font-size: 2.2rem;
  }
}
#policy .section-block .section-inner h2 {
  font-weight: 500;
  padding: 10px 3% 10px;
  line-height: 1;
  text-align: left;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  #policy .section-block .section-inner h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    line-height: 1.3;
  }
}
#policy .section-block .section-inner .section-row {
  margin-bottom: 80px;
  padding: 0 3%;
  font-size: clamp(1.3rem, 1.1153846154rem + 0.2403846154vw, 1.5rem);
}
@media screen and (max-width: 767px) {
  #policy .section-block .section-inner .section-row {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  #policy .section-block .section-inner .section-row {
    margin-bottom: 40px;
    padding: 0;
  }
}
#policy .section-block .section-inner .best {
  font-size: clamp(1.5rem, 1.2230769231rem + 0.3605769231vw, 1.8rem);
}
@media screen and (max-width: 767px) {
  #policy .section-block .section-inner .best {
    font-size: 1.8rem;
  }
}
#policy .section-block .section-inner .best {
  color: #519AD5;
  margin-bottom: 20px;
  font-weight: 500;
}
#policy .section-block .section-inner .bar-title {
  color: #519AD5;
  font-size: clamp(1.3rem, 1.1153846154rem + 0.2403846154vw, 1.5rem);
}
@media screen and (max-width: 767px) {
  #policy .section-block .section-inner .bar-title {
    font-size: 1.5rem;
  }
}
#policy .section-block .section-inner .bar-title {
  margin-bottom: 26px;
  font-weight: 500;
  border-left: 6px solid #519AD5;
  padding-left: 10px;
  line-height: 1.3;
}
#policy .section-block .section-inner .bg-title {
  background-color: #EFF7FF;
  color: #519AD5;
  font-size: clamp(1.3rem, 1.1153846154rem + 0.2403846154vw, 1.5rem);
}
@media screen and (max-width: 767px) {
  #policy .section-block .section-inner .bg-title {
    font-size: 1.5rem;
  }
}
#policy .section-block .section-inner .bg-title {
  margin-bottom: 26px;
  font-weight: 500;
  padding-left: 10px;
  line-height: 1.3;
  padding: 18px 20px;
}
#policy .section-block .section-inner p {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  #policy .section-block .section-inner p {
    margin-bottom: 20px;
  }
}
#policy .section-block .section-inner b {
  font-weight: bold;
}
#policy .section-block .section-inner ol {
  list-style: numeric;
  padding-left: 25px;
}
#policy .section-block .section-inner ol li {
  margin-bottom: 1rem;
}
#policy .section-block .section-inner ul {
  margin-bottom: 40px;
}
#policy .section-block .section-inner ul li {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 20px;
}
#policy .section-block .section-inner ul li::before {
  content: "●";
  display: inline-block;
  color: #519AD5;
  position: absolute;
  left: 0;
  top: 8px;
  font-size: 6px;
  padding-bottom: 10px;
}
#policy .section-block .section-inner .col2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  #policy .section-block .section-inner .col2 {
    display: block;
  }
}
#policy .section-block .section-inner .col2 li {
  width: 48%;
}
@media screen and (max-width: 767px) {
  #policy .section-block .section-inner .col2 li {
    width: 100%;
  }
}
#policy .section-block .section-inner a:hover {
  color: #519AD5;
}
#policy .section-block .section-inner .contact {
  border: 1px solid #519AD5;
  padding: 30px 5% 0;
}
#policy .section-block .section-inner .contact h3 {
  color: #519AD5;
  font-weight: 500;
  font-size: clamp(1.5rem, 1.2230769231rem + 0.3605769231vw, 1.8rem);
}
@media screen and (max-width: 767px) {
  #policy .section-block .section-inner .contact h3 {
    font-size: 1.8rem;
  }
}
#policy .section-block .section-inner .contact h3 {
  margin-bottom: 20px;
}

/* CONTACT
================================================== */
#contact {
  background-color: #EFF7FF;
}
#contact #visual {
  background-color: #fff;
  height: 200px;
  border-bottom: 1px solid #519AD5;
}
@media screen and (max-width: 767px) {
  #contact #visual {
    height: 100px;
    margin-bottom: 20px;
  }
}
#contact #visual .inner {
  display: flex;
  align-items: center;
  height: 100%;
}
#contact #visual .inner h1 {
  color: #519AD5;
  font-weight: 500;
  font-size: clamp(3rem, 3vw, 4.6rem);
}
#contact .section-block {
  padding-top: 75px;
}
@media screen and (max-width: 767px) {
  #contact .section-block {
    padding-top: 0;
  }
}
#contact .section-block p.first {
  margin-bottom: 40px;
}
#contact .section-block .content-layout {
  display: flex;
  gap: 20px;
}
#contact .section-block .content-layout .box {
  width: 33.33%;
  background-color: #fff;
  padding: 40px 3%;
  font-size: clamp(1.2rem, 1.0153846154rem + 0.2403846154vw, 1.4rem);
}
@media screen and (max-width: 767px) {
  #contact .section-block .content-layout .box {
    font-size: 1.4rem;
  }
}
#contact .section-block .content-layout .box .target {
  color: #EC2833;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}
#contact .section-block .content-layout .box .info {
  padding-top: 20px;
}
#contact .section-block .content-layout .box .info p {
  margin-bottom: 15px;
  line-height: 1.8;
}
#contact .section-block .content-layout .box .info .tel .number {
  color: #EC2833;
  font-weight: 500;
  font-size: clamp(2rem, 2.5vw, 3rem);
  margin-left: 12px;
  line-height: 1.2;
  letter-spacing: 2px;
}
@media (max-width: 890px) {
  #contact .section-block .content-layout {
    display: block;
  }
  #contact .section-block .content-layout .box {
    width: 100%;
    margin-bottom: 20px;
    display: flex;
  }
  #contact .section-block .content-layout .box .target {
    width: 50%;
    border-bottom: none;
    border-right: 1px solid #ddd;
    padding: 0 20px;
    height: auto !important;
  }
  #contact .section-block .content-layout .box .info {
    width: 50%;
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  #contact .section-block .content-layout .box {
    display: block;
  }
  #contact .section-block .content-layout .box .target {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #ddd;
    padding: 0;
    height: auto !important;
    padding-bottom: 20px;
  }
  #contact .section-block .content-layout .box .info {
    width: 100%;
    padding: 20px 0 0;
  }
}

/* FAQ
================================================== */
#faq {
  background-color: #EFF7FF;
}
#faq #visual {
  background-color: #fff;
  height: 200px;
  border-bottom: 1px solid #519AD5;
  margin-bottom: 75px;
}
@media screen and (max-width: 767px) {
  #faq #visual {
    height: 100px;
    margin-bottom: 20px;
  }
}
#faq #visual .inner {
  display: flex;
  align-items: center;
  height: 100%;
}
#faq #visual .inner h1 {
  color: #519AD5;
  font-weight: 500;
  font-size: clamp(3rem, 3vw, 4.6rem);
}
#faq .content-block h2 {
  background-color: #fff;
  text-align: center;
  color: #519AD5;
  font-weight: 500;
  font-size: clamp(2.8rem, 2.4307692308rem + 0.4807692308vw, 3.2rem);
}
@media screen and (max-width: 767px) {
  #faq .content-block h2 {
    font-size: 3.2rem;
  }
}
#faq .content-block h2 {
  letter-spacing: 2px;
  line-height: 1;
  padding: 25px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  #faq .content-block h2 {
    font-size: 1.8rem;
  }
}
#faq .content-block .section-block h3 {
  position: relative;
  background-color: #519AD5;
  font-weight: 500;
  font-size: clamp(1.9rem, 1.6230769231rem + 0.3605769231vw, 2.2rem);
}
@media screen and (max-width: 767px) {
  #faq .content-block .section-block h3 {
    font-size: 2.2rem;
  }
}
#faq .content-block .section-block h3 {
  border-radius: 100px;
  padding: 24px 40px 24px 40px;
  line-height: 1;
  color: #fff;
  margin-bottom: 20px;
  margin-top: 40px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  #faq .content-block .section-block h3 {
    font-size: 1.8rem;
    padding-left: 30px;
  }
}
#faq .content-block .section-block h3:hover {
  background-color: #4179B8;
}
#faq .content-block .section-block h3 .oc {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
}
#faq .content-block .section-block h3 .oc::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #fff;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
#faq .content-block .section-block h3 .oc::after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 1px;
  background-color: #fff;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
#faq .content-block .section-block .faq-block {
  display: none;
}
#faq .content-block .section-block dl {
  border-radius: 30px;
  background-color: #fff;
  padding: 30px 5%;
  margin-bottom: 20px;
}
#faq .content-block .section-block dl dt {
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
}
#faq .content-block .section-block dl dd {
  padding: 20px 0;
}
#faq .content-block .section-block dl dt,
#faq .content-block .section-block dl dd {
  display: flex;
}
#faq .content-block .section-block dl dt .en,
#faq .content-block .section-block dl dd .en {
  font-size: clamp(2.8rem, 2.4307692308rem + 0.4807692308vw, 3.2rem);
}
@media screen and (max-width: 767px) {
  #faq .content-block .section-block dl dt .en,
  #faq .content-block .section-block dl dd .en {
    font-size: 3.2rem;
  }
}
#faq .content-block .section-block dl dt .en,
#faq .content-block .section-block dl dd .en {
  color: #519AD5;
  font-weight: 500;
  width: 75px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  #faq .content-block .section-block dl dt .en,
  #faq .content-block .section-block dl dd .en {
    width: 30px;
    font-size: 2rem;
  }
}
#faq .content-block .section-block dl dt .ja,
#faq .content-block .section-block dl dd .ja {
  flex: 1;
  width: calc(100% - 75px);
  font-size: clamp(1.3rem, 1.1153846154rem + 0.2403846154vw, 1.5rem);
}
@media screen and (max-width: 767px) {
  #faq .content-block .section-block dl dt .ja,
  #faq .content-block .section-block dl dd .ja {
    font-size: 1.5rem;
  }
}
#faq .content-block .section-block dl dt .ja,
#faq .content-block .section-block dl dd .ja {
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  #faq .content-block .section-block dl dt .ja,
  #faq .content-block .section-block dl dd .ja {
    width: calc(100% - 30px);
  }
}
#faq .content-block .section-block dl dt .line,
#faq .content-block .section-block dl dd .line {
  border-radius: 25px;
  background-color: #666;
  color: #fff;
  line-height: 1;
  padding: 4px 12px;
}
#faq .content-block .section-block dl ul li {
  position: relative;
  padding-left: 1.5ex;
  text-indent: -1.5ex;
}
#faq .content-block .section-block dl ul li::before {
  content: "・";
}
#faq .content-block .section-block dl .image {
  margin-block: 1rem;
}
@media screen and (max-width: 767px) {
  #faq .content-block .section-block dl .image {
    margin-block: 0.5rem;
    overflow-x: auto;
  }
  #faq .content-block .section-block dl .image img {
    width: 500px;
    max-width: none;
  }
}
#faq .content-block .section-block dl .attention {
  background-color: #FDE9EA;
  padding: 20px;
  margin-top: 2rem;
  color: #EC2833;
}
#faq .content-block .section-block dl .attention h4 {
  font-weight: bold;
  color: #EC2833;
  font-size: clamp(1.2rem, 1.0153846154rem + 0.2403846154vw, 1.4rem);
}
@media screen and (max-width: 767px) {
  #faq .content-block .section-block dl .attention h4 {
    font-size: 1.4rem;
  }
}
#faq .content-block .section-block dl .attention ul li {
  position: relative;
  padding-left: 1.5ex;
  text-indent: -1.5ex;
  color: #EC2833;
}
#faq .content-block .section-block dl .attention ul li::before {
  content: "・";
}
#faq .content-block#qa1 {
  margin-bottom: 80px;
}
#faq .content-block#qa1 .calc {
  padding: 0;
  list-style-type: none;
  margin: 1rem 0;
}
#faq .content-block#qa1 .calc .yen {
  padding-left: 20px;
  text-align: right;
  white-space: nowrap;
}
#faq .content-block#qa1 .calc .total {
  text-align: right;
  border-top: 2px solid #000;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
}
#faq .content-block#qa2 h2 {
  margin-bottom: 0;
}
#faq .content-block#qa2 .note {
  font-size: clamp(1.1rem, 0.9153846154rem + 0.2403846154vw, 1.3rem);
}
@media screen and (max-width: 767px) {
  #faq .content-block#qa2 .note {
    font-size: 1.3rem;
  }
}
#faq .content-block#qa2 .note {
  margin-top: 1rem;
  text-align: right;
  margin-bottom: 40px;
}

/* FORM
================================================== */
#form {
  background-color: #EFF7FF;
}
#form #visual {
  background-color: #fff;
  height: 200px;
  border-bottom: 1px solid #519AD5;
  margin-bottom: 75px;
}
@media screen and (max-width: 767px) {
  #form #visual {
    height: 100px;
    margin-bottom: 20px;
  }
}
#form #visual .inner {
  display: flex;
  align-items: center;
  height: 100%;
}
#form #visual .inner h1 {
  color: #519AD5;
  font-weight: 500;
  font-size: clamp(3rem, 3vw, 4.6rem);
}
#form .section-block {
  padding: 80px 0 0;
}
@media screen and (max-width: 767px) {
  #form .section-block {
    padding-top: 40px;
  }
}
#form .section-block h2 {
  background-color: #fff;
  text-align: center;
  color: #519AD5;
  font-weight: 500;
  font-size: clamp(2.8rem, 2.4307692308rem + 0.4807692308vw, 3.2rem);
}
@media screen and (max-width: 767px) {
  #form .section-block h2 {
    font-size: 3.2rem;
  }
}
#form .section-block h2 {
  letter-spacing: 2px;
  line-height: 1;
  padding: 25px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  #form .section-block h2 {
    font-size: 2rem;
  }
}
#form .section-block .lead {
  margin-bottom: 40px;
}
#form .section-block .form-block {
  max-width: 1032px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 767px) {
  #form .section-block .form-block {
    padding: 0;
  }
}
#form .section-block .form-block > h3 {
  color: #fff;
  background-color: #519AD5;
  font-size: clamp(1.9rem, 1.6230769231rem + 0.3605769231vw, 2.2rem);
}
@media screen and (max-width: 767px) {
  #form .section-block .form-block > h3 {
    font-size: 2.2rem;
  }
}
#form .section-block .form-block > h3 {
  border-radius: 30px 30px 0 0;
  padding: 25px 3% 25px 8%;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #form .section-block .form-block > h3 {
    font-size: 2rem;
    padding-block: 20px;
  }
}
#form .section-block .form-block > h3 .hi {
  display: inline-block;
  border-radius: 20px;
  background-color: #fff;
  line-height: 1;
  padding: 4px 8px;
  color: #000;
  font-size: clamp(1.1rem, 0.9153846154rem + 0.2403846154vw, 1.3rem);
}
@media screen and (max-width: 767px) {
  #form .section-block .form-block > h3 .hi {
    font-size: 1.3rem;
  }
}
#form .section-block .form-block > h3 .hi {
  margin-left: 15px;
  vertical-align: 3px;
}
#form .section-block .form-block .form-inner {
  background-color: #fff;
  padding: 45px 8%;
  border-radius: 0 0 30px 30px;
}
@media screen and (max-width: 767px) {
  #form .section-block .form-block .form-inner {
    padding-bottom: 20px;
  }
}
#form .section-block .form-block .form-inner .form-row {
  display: flex;
  font-size: clamp(1.3rem, 1.1153846154rem + 0.2403846154vw, 1.5rem);
}
@media screen and (max-width: 767px) {
  #form .section-block .form-block .form-inner .form-row {
    font-size: 1.5rem;
  }
}
#form .section-block .form-block .form-inner .form-row {
  margin-bottom: 30px;
}
#form .section-block .form-block .form-inner .form-row dt {
  width: 180px;
  padding-top: 8px;
}
#form .section-block .form-block .form-inner .form-row dd {
  flex: 1;
}
#form .section-block .form-block .form-inner .form-row .layout {
  display: flex;
  gap: 18px;
}
#form .section-block .form-block .form-inner .form-row .layout.mb {
  margin-bottom: 15px;
}
#form .section-block .form-block .form-inner .form-row .layout .col {
  width: 50%;
}
#form .section-block .form-block .form-inner .form-row select,
#form .section-block .form-block .form-inner .form-row input[type=email],
#form .section-block .form-block .form-inner .form-row input[type=text] {
  width: 100%;
  border: 1px solid #E6E6E6;
  border-radius: 4px;
  padding: 15px 20px;
}
#form .section-block .form-block .form-inner .form-row textarea {
  width: 100%;
  border: 1px solid #E6E6E6;
  border-radius: 4px;
  padding: 15px 20px;
}
#form .section-block .form-block .form-inner .form-row select {
  width: 70px;
  padding: 15px 0px 15px 10px;
}
#form .section-block .form-block .form-inner .form-row input.w50 {
  width: 50%;
}
#form .section-block .form-block .form-inner .form-row input.w10 {
  width: 30%;
}
#form .section-block .form-block .form-inner .form-row .other_input {
  display: inline-block;
}
#form .section-block .form-block .form-inner .form-row .other_input input[type=text] {
  width: calc(100% - 105px);
}
#form .section-block .form-block .form-inner .form-row .other_input.wide {
  width: 100%;
}
#form .section-block .form-block .form-inner .form-row .other_input.wide input[type=text] {
  width: calc(100% - 185px);
}
@media screen and (max-width: 767px) {
  #form .section-block .form-block .form-inner .form-row .other_input.wide input[type=text] {
    width: 100%;
  }
}
#form .section-block .form-block .form-inner .form-row .tel {
  display: flex;
  align-items: center;
}
#form .section-block .form-block .form-inner .form-row .tel span {
  padding: 0 10px;
}
#form .section-block .form-block .form-inner .form-row .tel .input-tel {
  width: 20%;
}
#form .section-block .form-block .form-inner .form-row input[type=checkbox] {
  border: 1px solid #E6E6E6;
  border-radius: 4px;
  padding: 15px;
}
#form .section-block .form-block .form-inner .form-row label {
  display: inline-block;
  cursor: pointer;
  margin-right: 20px;
}
#form .section-block .form-block .form-inner h4 {
  color: #519AD5;
  font-weight: 500;
  font-size: clamp(1.5rem, 1.2230769231rem + 0.3605769231vw, 1.8rem);
}
@media screen and (max-width: 767px) {
  #form .section-block .form-block .form-inner h4 {
    font-size: 1.8rem;
  }
}
#form .section-block .form-block .form-inner h4 {
  margin-bottom: 20px;
}
#form .section-block .attention {
  margin-bottom: 5rem;
  background-color: #ffcece;
  padding: 45px 8%;
  border-radius: 30px;
  color: #EC2833;
  font-weight: 500;
}
#form .section-block .agree .form-inner {
  border-radius: 30px;
  text-align: center;
}
#form .section-block .agree .form-inner h3 {
  color: #519AD5;
  font-weight: 500;
  font-size: clamp(1.9rem, 1.6230769231rem + 0.3605769231vw, 2.2rem);
}
@media screen and (max-width: 767px) {
  #form .section-block .agree .form-inner h3 {
    font-size: 2.2rem;
  }
}
#form .section-block .agree .form-inner h3 {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  #form .section-block .agree .form-inner h3 {
    font-size: 2rem;
  }
}
#form .section-block .agree .form-inner h3 .hi {
  display: inline-block;
  border-radius: 20px;
  background-color: #519AD5;
  line-height: 1;
  padding: 4px 8px;
  color: #fff;
  font-size: clamp(1.1rem, 0.9153846154rem + 0.2403846154vw, 1.3rem);
}
@media screen and (max-width: 767px) {
  #form .section-block .agree .form-inner h3 .hi {
    font-size: 1.3rem;
  }
}
#form .section-block .agree .form-inner h3 .hi {
  margin-left: 15px;
  vertical-align: 3px;
}
#form .section-block #submit {
  text-align: center;
}
#form .section-block #submit input {
  cursor: pointer;
  display: inline-block;
  border-radius: 50px;
  background-color: #519AD5;
  line-height: 1;
  padding: 14px 18px;
  color: #fff;
  font-size: clamp(1.7rem, 1.4230769231rem + 0.3605769231vw, 2rem);
}
@media screen and (max-width: 767px) {
  #form .section-block #submit input {
    font-size: 2rem;
  }
}
#form .section-block #submit input {
  margin-left: 15px;
  vertical-align: 3px;
  width: 230px;
  border: none;
  transition: background-color 0.3s ease;
}
#form .section-block #submit input:hover {
  background-color: #4179B8;
}
#form .section-block .note {
  text-align: right;
  font-size: clamp(1.1rem, 0.9153846154rem + 0.2403846154vw, 1.3rem);
}
@media screen and (max-width: 767px) {
  #form .section-block .note {
    font-size: 1.3rem;
  }
}
#form .section-block .note {
  margin-top: 1rem;
}