﻿@charset "utf-8";

/* base
USE FONT : "Noto Sans JP" "M PLUS 2"
--------------------------------------------*/
* {
  font-family: 'Noto Sans JP','HiraKakuProN-W3','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3';
}
html { font-size: 62.5%; }

/* layout
--------------------------------------------*/
#container {
  width: 850px;
  margin: 0 auto;
}

/* body
--------------------------------------------*/
body {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #000;
}
a {
  text-decoration: none;
  color: #000;
}

/* header
--------------------------------------------*/
header {
  position: relative;
}
header #siteTitle {
  position: relative;
  z-index: 110;
}

/* type1*/
header.type1 {
  margin-bottom: 20px;
  padding: 30px;
}
header.type1 #headerInner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1355px;
  margin: 0 auto;
}
header.type1 #headerInner .disc {
  margin-top: 10px;
}
header.type1 #headerContent {
  display: flex;
  flex-flow: row-reverse;
}
header.type1 nav ul {
  display: flex;
  margin-right: 20px;
}
header.type1 nav ul li:not(:first-child) {
  margin-left: 20px;
}
header.type1 .headerMenu {
  display: flex;
}
header.type1 .headerMenu ul {
  display: flex;
  margin-right: 20px;
}
header.type1 .headerMenu ul li:not(:last-child) {
  margin-right: 10px;
}

/* type2*/
header.type2 {
  margin-bottom: 20px;
  padding: 30px;
}
header.type2 #headerInner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
header.type2 #headerInner .disc {
  margin-top: 10px;
}
header.type2 #headerContent {

}
header.type2 nav ul {
  display: flex;
}
header.type2 nav ul li:not(:first-child) {
  margin-left: 20px;
}
header.type2 .headerMenu {
  display: flex;
  justify-content: end;
  margin-bottom: 10px;
}
header.type2 .headerMenu ul {
  display: flex;
  margin-right: 20px;
}
header.type2 .headerMenu ul li:not(:last-child) {
  margin-right: 10px;
}


/* type3*/
header.type3 {
  margin-bottom: 20px;
  padding: 30px;
}
header.type3 #headerInner {
  display: block;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
header.type3 #headerInner #siteTitle {
  text-align: center;
}
header.type3 #headerInner .disc {
  margin-top: 10px;
}
header.type3 #headerContent {
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
header.type3 nav ul {
  display: flex;
}
header.type3 nav ul li:not(:first-child) {
  margin-left: 20px;
}
header.type3 .headerMenu {
  display: flex;
  justify-content: end;
}
header.type3 .headerMenu ul {
  display: flex;
  margin-right: 20px;
}
header.type3 .headerMenu ul li:not(:last-child) {
  margin-right: 10px;
}


/* type4 */
header.type4 {
  margin-bottom: 20px;
  padding: 30px;
}
header.type4 #headerInner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}
header.type4 #headerInner #siteTitle {
  margin-bottom: 20px;
}
header.type4 #headerInner .disc {
  margin-top: 10px;
}
header.type4 #headerContent {

}
header.type4 nav {
  justify-content: center;
}
header.type4 nav ul {
  display: flex;
  justify-content: space-evenly;
}
header.type4 nav ul li:not(:first-child) {
  margin-left: 20px;
}
header.type4 .headerMenu {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
header.type4 .headerMenu ul {
  display: flex;
  margin-right: 20px;
}
header.type4 .headerMenu ul li:not(:last-child) {
  margin-right: 10px;
}


/* type5 */
header.type5 {
  margin-bottom: 20px;
  padding: 30px;
}
header.type5 #headerInner {
  display: flex;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
header.type5 #siteTitle {
  margin-right: 50px;
}
header.type5 #headerInner .disc {
  margin-top: 10px;
}
header.type5 #headerContent {

}
header.type5 nav ul {
  display: flex;
}
header.type5 nav ul li:not(:first-child) {
  margin-left: 20px;
}
header.type5 .headerMenu {
  position: absolute;
  right: 0;
  display: flex;
  justify-content: end;
  margin-bottom: 10px;
}
header.type5 .headerMenu ul {
  display: flex;
  margin-right: 20px;
}
header.type5 .headerMenu ul li:not(:last-child) {
  margin-right: 10px;
}



/* main
--------------------------------------------*/
#main {

}
#contents {
  margin-bottom: 80px;
  box-sizing: border-box;
}
#contents .content img {
  max-width: 100%;
  height: auto;
}

/* side
--------------------------------------------*/
#side > div {
  margin-bottom: 30px;
  box-sizing: border-box;
}
#side > div .head {
  margin-bottom: 8px;
  padding: 2px 0 5px;
  font-size: 18px;
}
#side  .years > select {
  display: block;
  margin-bottom: 20px;
}
#side  .years > ul {
  margin-bottom: 20px;
}

/* footer
--------------------------------------------*/
footer img {
  max-width: 100%;
  height: auto;
}
footer #page-top {
  position: fixed;
  right: 10px;
  bottom: 20px;
  display: none;
  width: 54px;
}

footer.type1 {
  padding: 50px 20px;
  background-color: #FFAE35;
}
footer.type1 #footerInner {
  display: flex;
  justify-content: space-between;
  align-items: end;
  max-width: 1280px;
  margin: 0 auto;
}
footer.type1 #footerInfo {
  padding-right: 100px;
  border-right: solid 1px #000;
}
footer.type1 .footerSiteLogo {

}
footer.type1 .footerSiteTitle {
  margin-bottom: 15px;
}
footer.type1 .footerText {
  margin-bottom: 10px;
}
footer.type1 .footerText p:not(:last-child) {
  margin-bottom: 5px;
}
footer.type1 .link {

}
footer.type1 .link a {
  display: inline-block;
  padding: 10px 20px;
  border: solid 1px #000;
  text-align: center;
}
footer.type1 #footerMenu {
  display: flex;
}
footer.type1 #footerMenu > ul {
  margin-left: 50px;
}
footer.type1 #footerMenu h2 {
  margin-bottom: 5px;
}
footer.type1 #footerMenu li {
  margin-bottom: 5px;
}

footer.type1 #copyright {
  font-size: 1.4rem;
}


footer.type2 {

}
footer.type2 #footerMenu {
  border-bottom: solid 1px #000;
  padding: 20px 0;
}
footer.type2 #footerMenu ul {
  display: flex;
  max-width: 1280px;
  margin: 0 auto;
}
footer.type2 #footerMenu ul li {
  border-right: solid 1px #000;
  margin-right: 10px;
  padding-right: 10px;
}
footer.type2 #footerMenu ul li:last-child {
  border-right: none;
}
footer.type2 #footerInner {
  display: flex;
  justify-content: space-between;
  align-items: end;
  max-width: 1280px;
  margin: 0 auto;
  padding: 50px 0;
}
footer.type2 .footerSiteLogo {
  margin-bottom: 10px;
}
footer.type2 .footerSiteTitle {
  margin-bottom: 15px;
}
footer.type2 .footerText {
  margin-bottom: 10px;
}
footer.type2 .footerText p:not(:last-child) {
  margin-bottom: 5px;
}
footer.type2 .link {

}
footer.type2 .link a {
  display: inline-block;
  width: 100%;
  padding: 10px 20px;
  box-sizing: border-box;
  border: solid 1px #000;
  text-align: center;
}
footer.type2 #footerContent1 {

}
footer.type2 #footerContent1 #copyright {
  margin-bottom: 5px;
}


/* slider
---------------------------------------------*/
.slideContent {
  position: relative;
}
.slideContent .catch {
  position: absolute;
  top: calc(50% - (93px / 2));
  left: calc(50% - (456px / 2));
}
.slider.typeFH {
  width: 100%;
  margin: 0 auto 50px;
}
.slider.typeFH img {
  width: 100%;
}
.slider.typeFH .slick-prev {
  left: 25px;
  z-index: 10;
}
.slider.typeFH .slick-next {
  right: 25px;
  z-index: 10;
}
.slider.typeFH .slick-slide {
  height: auto!important;
}
.slider.typeFH .slick-dots {
  bottom: 30px;
}
.slider.typeFH .slick-dots button {

}
.slider.typeFH .slick-dots button:before {
  width: 10px;
  height: 10px;
  border: solid 3px #FFF;
  border-radius: 10px;
  opacity: 1 !important;
  font-size: 0;
}
.slider.typeFH .slick-dots .slick-active button:before {
  background-color: #FFF;
}
.slider.typeFH img.slideImg {
  width: 100%;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  object-fit: cover;
}

.slider.type1 {
  width: 100%;
  margin: 0 auto 50px;
}
.slider.type1 img {
  width: 100%;
}
.slider.type1 .slick-prev {
  left: 25px;
  z-index: 10;
}
.slider.type1 .slick-next {
  right: 25px;
  z-index: 10;
}
.slider.type1 .slick-slide {
  height: auto!important;
}
.slider.type1 .slick-dots {
  bottom: 30px;
}
.slider.type1 .slick-dots button {

}
.slider.type1 .slick-dots button:before {
  width: 10px;
  height: 10px;
  border: solid 3px #FFF;
  border-radius: 10px;
  opacity: 1 !important;
  font-size: 0;
}
.slider.type1 .slick-dots .slick-active button:before {
  background-color: #FFF;
}


.slider.type2 {
  height: 100vh;
  margin-bottom: 50px;
}
.slider.type2 .sliderText {
  position: absolute;
  left: 0;
  display: flex;
  align-items: center;
  width: 100vw;
  height: 100%;
}
.slider.type2 .sliderText.right {
  right: 0;
  left: auto;
  justify-content: right;
  margin-right: 100px;
  text-align: right;
}
.slider.type2 .sliderText.left {
  justify-content: left;
  margin-left: 100px; 
  text-align: left;
}
.slider.type2 .sliderText.center {
  justify-content: center;
  text-align: center;
}
.slider.type2 .sliderText img {
  transition: all 5s;
  opacity: 1;
}
.slider.type2 .vegas-transition-fade-out .sliderText img {
  opacity: 0;
}


.carousel .slick-prev,
.carousel .slick-next {
  height: 36px;
}
.carousel .slick-prev {
  left: 0;
}
.carousel .slick-next {
  right: 0;
}
.carousel .slick-prev::before,
.carousel .slick-next::before {
  display: block;
  content: "";
  width: 16px;
  height: 36px;
  padding: 0;
  background-repeat: no-repeat;
}
.carousel .slick-prev::before {
  background-image: url(./images/arrow_1_left.png);
}
.carousel .slick-next::before {
  background-image: url(./images/arrow_1_right.png);
}
.carousel .slick-list {
  /* margin-left: 55px; */
}
.carousel .slick-list li a {
  display: block;
  text-decoration: none;
}
.carousel .slick-list li a img {
  width: 240px;
  height: 160px;
  margin-bottom: 5px;
}

/* main
------------------------------------------------------------------*/

/* contents
-----------------------------------*/
.content {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
#contents .content:first-child {
  padding: 100px 0;
}
#contents .content:not(.bg):not(:first-child) {
  padding: 0 0 100px;
}
#contents .content.bg + .content {
  padding: 100px 0;
}
.content.pRelative {
  position: relative;
  overflow: initial;
}
.content.pRelative + .content {
  padding-top: 340px !important;
}
.content.bg {
  background-color: #efefef;
}
.content .contentInner {
  max-width: 1280px;
  margin: 0 auto;
}
h2 {
  margin-bottom: 30px;
  font-size: 2.6rem;
}
h3 {
  margin-bottom: 20px;
  font-size: 2.2rem;
}
.content .contentInner .block:not(:last-child) {
  margin-bottom: 80px;
}

/* button
-----------------------------------*/
.more.type1 a {
  position: relative;
  display: inline-block;
  width: 200px;
  padding: 20px;
  border-radius: 30px;
  background-color: #3b3b3b;
  text-align: center;
  color: #FFF;
}
.more.type1 a:after {
  position: absolute;
  top: calc(50% - 2px);
  right: 30px;
  display: block;
  content: "";
  width: 4px;
  height: 4px;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.more.type2 a {
  position: relative;
  display: inline-block;
  width: 155px;
  padding: 5px;
  box-sizing: border-box;
  border: solid 1px #000;
  text-align: center;
}
.more.type2.cWhite a {
  border: solid 1px #FFF;
  color: #FFF;
}

/* button
-----------------------------------*/
.button.type1 a {
  position: relative;
  display: inline-block;
  max-width: 610px;
  width: 100%;
  padding: 20px;
  border-radius: 80px;
  box-sizing: border-box;
  background: #219CFB;
  background: linear-gradient(90deg, rgba(33, 156, 251, 1) 0%, rgba(103, 223, 207, 1) 94%);
  text-align: center;
  color: #FFF;
}
.button.type1 a span {
  font-weight: 400;
  font-size: 3rem;
}
.button.type1 a span:nth-child(1) {
  display: block;
  font-weight: 500;
  font-size: 2rem;
}
.button.type1 a .large {
  font-family: "M PLUS 2";
  font-weight: 600;
  font-size: 3.6rem;
}
.button.type1.bgWhite a {
  background: #FFF;
  box-shadow: 0px 0px 20px 0px #FFF;
  -webkit-box-shadow: 0px 0px 20px 0px #FFF;
  color: #00A8E2;
} 
.button.type1.orange a {
  background: #F55411;
  background: linear-gradient(90deg, rgba(245, 84, 17, 1) 0%, rgba(255, 160, 18, 1) 80%);
}

.button.type2 {
  position: relative;
  display: block;
  max-width: 610px;
  width: 100%;
  margin: 0 auto 25px;
  padding: 6px;
  border-radius: 80px;
  background: #219CFB;
  background: linear-gradient(90deg, #FFA012 0%, #F55411 94%);
  box-sizing: border-box;
  text-align: center;
  color: #FFF;
}
.button.type2 span {
  font-weight: 500;
  font-size: 3.2rem;
}
.button.type2 .large {
  margin: 0 5px;
  font-family: "M PLUS 2";
  font-weight: 600;
  font-size: 5rem;
}


.button.type2 a {
  position: relative;
  padding-right: 57px;
  background-image: url("./images/common/ic_arrow7.png");
  background-image: image-set(url("./images/common/ic_arrow7.png") 1x, url("./images/common/ic_arrow7x2.png") 2x);
  background-image: -webkit-image-set(url("./images/common/ic_arrow7.png") 1x, url("./images/common/ic_arrow7x2.png") 2x);
  background-position: center right;
  background-repeat: no-repeat;
}
.button.type2 a:before,
.button.type2 a:after {
  position: absolute;
  display: block;
  content: "";
  transition: all 0.2s;
}
.button.type2 a:before {
  top: calc(50% - 3px);
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.button.type2 a:after {
  top: calc(50% - 0.5px);
  right: 0;
  width: 21px;
  height: 1px;
  background-color: #5C5C5C;
}

.button.type3 {

}
.button.type3 a {
  position: relative;
  display: block;
  width: 200px;
  padding: 20px 10px 16px;
  box-sizing: border-box;
  border-radius: 50px 0 0 0;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  color: #FFF;
}

.txtGrad.gradBtoG {
  background: linear-gradient(90deg, #219CFB 0%, #67DFCF 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}
.txtGrad.gradBtoG.gradVertical {
  background: linear-gradient(0deg, #67DFCF 0%, #219CFB 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}
.txtGrad.gradDBtoB {
  background: linear-gradient(90deg, #3385e5 0%, #02559d 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}
.txtGrad.gradDBtoB.gradVertical {
  background: linear-gradient(0deg, #3385e5 0%, #02559d 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}
.txtGrad.gradRtoO {
  background: linear-gradient(90deg, #f55411 0%, #ffa012 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}
.txtGrad.gradRtoO.gradVertical {
  background: linear-gradient(0deg, #ffa012 0%, #f55411 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}
.bgGrad.gradBtoG {
  background: #219CFB;
  background: linear-gradient(90deg, rgba(33, 156, 251, 1) 0%, rgba(103, 223, 207, 1) 94%);
}
.bgGrad.gradBtoG.gradVertical {
  background: #219CFB;
  background: linear-gradient(0deg, rgba(33, 156, 251, 1) 0%, rgba(103, 223, 207, 1) 94%);
}
.bgGrad.gradDBtoB {
  background: #3385E5;
  background: linear-gradient(90deg, rgba(51, 133, 229, 1) 0%, rgba(2, 85, 157, 1) 94%);
}
.bgGrad.gradDBtoB.gradVertical {
  background: #3385E5;
  background: linear-gradient(0deg, rgba(51, 133, 229, 1) 0%, rgba(2, 85, 157, 1) 94%);
}
.bgGrad.gradWtoG.gradVertical {
  background: #9EF4EF;
  /* background: linear-gradient(0deg, rgba(158, 244, 239, 0.5) 0%, rgba(255, 255, 255, 0.5) 80%); */
  background: linear-gradient(#fff 0%, #9ef4ef 100%);
}

.bgGreen {
  background-color: #36D9C4;
}
.bgBlue {
  background-color: #198DE5;
}
span.bgBlue {
  color: #FFF;
}

.fukidashi.type1 {
  position: relative;
  max-width: 375px;
  margin: 0 auto 50px;
  padding: 26px 10px;
  background-image: url("../images/bg_fukidashi1.png");
  background-image: image-set(url("../images/bg_fukidashi1.png") 1x, url("../images/bg_fukidashi1x2.png") 2x);
  background-image: -webkit-image-set(url("../images/bg_fukidashi1.png") 1x, url("../images/bg_fukidashi1x2.png") 2x);
  background-position: center center;
  background-repeat: no-repeat;
  box-sizing: border-box;
  text-align: center;
  font-weight: 500;
  font-size: 3.2rem;
  color: #FFF;
}
.fukidashi.type2 {
  position: relative;
  display: block;
  max-width: 375px;
  margin: 0 auto 50px;
  padding: 26px 10px;
  background-image: url("../images/bg_fukidashi_orange.png");
  background-image: image-set(url("../images/bg_fukidashi_orange.png") 1x, url("../images/bg_fukidashi_orangex2.png") 2x);
  background-image: -webkit-image-set(url("../images/bg_fukidashi_orange.png") 1x, url("../images/bg_fukidashi_orangex2.png") 2x);
  background-position: center center;
  background-repeat: no-repeat;
  box-sizing: border-box;
  text-align: center;
  font-weight: 500;
  font-size: 3.2rem;
  color: #FFF;
}
.fukidashi.type3 {
  position: relative;
  max-width: 375px;
  margin: 0 auto 10px;
  padding: 11px 10px 29px;
  background-image: url("../images/bg_fukidashi2.png");
  background-image: image-set(url("../images/bg_fukidashi2.png") 1x, url("../images/bg_fukidashi2x2.png") 2x);
  background-image: -webkit-image-set(url("../images/bg_fukidashi2.png") 1x, url("../images/bg_fukidashi2x2.png") 2x);
  background-position: center center;
  background-repeat: no-repeat;
  box-sizing: border-box;
  text-align: center;
  font-weight: 500;
  font-size: 2.4rem;
  color: #FFF;
}
.upperDot span {
  position: relative;
  display: inline-block;
}
.upperDot span:before {
  top: -2px;
  position: absolute;
  left: calc(50% - (6px / 2));
  display: block;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #FFF;
}

/* bread crumbs
-----------------------------------*/
.breadcrumb {
  line-height: 1;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.breadcrumb li {
  display: inline-block;
  font-size: 1.2rem;
}
.breadcrumb li * {
  font-size: 1.3rem; 
}
.breadcrumb li:not(:last-child):after {
  display: inline-block;
  content: "＞";
  margin: 0 10px;
}

/* common
-----------------------------------*/
.alignC {
  text-align: center!important;
}
.alignL {
  text-align: left!important;
}
.alignR {
  text-align: right!important;
}

.fz18 {
  font-size: 1.8rem!important;
}
.fz24 {
  font-size: 2.4rem!important;
}
.fz28 {
  font-size: 2.8rem!important;
}
.fz32 {
  font-size: 3.2rem!important;
}
.fz36 {
  font-size: 3.6rem!important;
}
.fz50 {
  font-size: 5rem!important;
}

.cBlue {
  color: #0659A3!important;
}
.cOrange {
  color: #DE8724!important;
}
.cRed {
  color: #E53D1B!important;
}
.cBrown {
  color: #985615!important;
}
.cDarkBrown {
  color: #5A3008!important;
}
.bgRed {
  background-color: #E53D1B;
  color: #FFF;
}

.mb20 {
  margin-bottom: 20px!important;
}
.mb40 {
  margin-bottom: 40px!important;
}
.mb60 {
  margin-bottom: 60px!important;
}
.mb80 {
  margin-bottom: 80px!important;
}
.mb100 {
  margin-bottom: 100px!important;
}
.mb120 {
  margin-bottom: 120px!important;
}
.mb140 {
  margin-bottom: 140px!important;
}
.mb160 {
  margin-bottom: 160px!important;
}
.mb180 {
  margin-bottom: 180px!important;
}
.mb200 {
  margin-bottom: 200px!important;
}

.cols2,
.cols3,
.cols4 {
  display: flex;
  flex-wrap: wrap;
}
.cols2 > *,
.cols3 > *,
.cols4 > * {
  margin-right: 40px;
  margin-bottom: 40px;
}
.cols2 > *:nth-child(2n),
.cols3 > *:nth-child(3n),
.cols4 > *:nth-child(4n) {
  margin-right: 0;
}
.cols2 > * {
  width: calc((100% - (40px * 1)) / 2);
}
.cols3 > * {
  width: calc((100% - (40px * 2)) / 3);
}
.cols4 > * {
  width: calc((100% - (40px * 3)) / 4);
}
.cols2.rev {
  flex-flow: row-reverse;
  justify-content: space-between;
}
.cols2.rev > *:nth-child(odd) {
  margin-right: 0;
}
.cols2.rev > *:nth-child(even) {
  margin-right: 40px;
}

.layoutCols2 {
  position: relative;
  display: flex;
  flex-flow: row-reverse;
}
.layoutCols2 .colsMain {
  width: calc(100% - 200px - 40px);
}
.layoutCols2 .colsSide {
  width: 200px;
  margin-right: 40px;
}
.layoutCols2 .fixedSide {

}

.head.type2 {
  margin-bottom: 100px;
  text-align: center;
}
.head.type3 {
  margin-bottom: 40px;
  font-size: 2rem;
}
.head.type4 {
  margin-bottom: 60px;
  text-align: center;
}
.head.type4 span {
  display: block;
}
.head.type4 span:nth-child(1) {
  font-size: 3.2rem;
}
.head.type4 span:nth-child(2) {
  font-family: "M PLUS 2";
  font-weight: 400;
  font-size: 5.4rem;
  color: #E53D1B;
}
.head.type5 {
  margin-bottom: 60px;
  text-align: center;
}
.head.type5 span {
  display: block;
}
.head.type5 .large {
  font-size: 4rem;
  color: #E53D1B;
}
.head.type7 {
  margin-bottom: 60px;
  text-align: center;
  font-weight: 600;
  font-size: 3.2rem;
}
.head.type7 span {
  margin-right: 5px;
  font-size: 5rem;
}
.head.type8 {

}
.head.type8 div {
  display: inline-block;
  margin-bottom: 10px;
  padding: 3px 15px;
  background: #219CFB;
  background: linear-gradient(90deg, rgba(33, 156, 251, 1) 0%, rgba(103, 223, 207, 1) 94%);
  font-weight: 400;
  font-family: "M PLUS 2";
  font-size: 3.2rem;
  color: #FFF;
}
.head.type8 div span {
  margin-right: 5px;
  font-size: 4rem;
}
.head.type9 {
  margin-bottom: 40px;
  background-image: url("../images/ic_imp2.png");
  background-image: image-set(url("../images/ic_imp2.png") 1x, url("../images/ic_imp2x2.png") 2x);
  background-image: -webkit-image-set(url("../images/ic_imp2.png") 1x, url("../images/ic_imp2x2.png") 2x);
  font-weight: 600;
  font-size: 2.8rem;
}
.head.type11 span {
  border-bottom: dashed 2px #00A8E2;
  font-family: "M PLUS 2";
  font-weight: 600;
  font-size: 3.2rem;
  color: #00A8E2;
}
.head.type11.red span {
  border-bottom: dashed 2px #E53D1B;
  font-family: "M PLUS 2";
  font-weight: 600;
  font-size: 3.2rem;
  color: #E53D1B;
}
.head.type13 {
  margin-bottom: 50px;
}
.head.type13 span {
  display: block;
  text-align: center;
  font-weight: 500;
  font-size: 2.4rem;
}
.head.type13 span.large {
  font-family: "M PLUS 2";
  font-size: 5rem;
}
.head.type14 {
  margin-bottom: 50px;
  font-family: "M PLUS 2";
  font-weight: 400;
  font-size: 3.4rem;
}
.head.type14 .bgGrad {
  padding: 0 10px;
  font-family: "M PLUS 2";
  font-size: 4.6rem;
  color: #FFF;
}

.content .block:not(:last-child) {
  margin-bottom: 40px;
}
.content .image {
  margin-bottom: 20px;
}
.content .text:not(:last-child) {
  margin-bottom: 40px;
}
.content .text p:not(:last-child) {
  margin-bottom: 20px;
}

.borderB {
  border-bottom: solid 1px #1D1C1A;
}
.borderB.dashed {
  border-bottom: dashed 2px #1D1C1A;
}

.fwSB {
  font-weight: 500!important;
}
.fwB {
  font-weight: 600!important;
}

.icExclam {
  padding-left: 45px;
  background-image: url("../images/ic_imp.png");
  background-image: image-set(url("../images/ic_imp.png") 1x, url("../images/ic_impx2.png") 2x);
  background-image: -webkit-image-set(url("../images/ic_imp.png") 1x, url("../images/ic_impx2.png") 2x);
  background-repeat: no-repeat;
  background-position: 0 7px;
}

dl.type1 {

}
dl.type1 dt {
  position: relative;
  margin-bottom: 10px;
  padding: 28px 85px 28px 100px;
  background-color: #F2F2F2;
  font-weight: 600;
  font-size: 2rem;
}
dl.type1 dt span {
  position: absolute;
  top: 17px;
  left: 40px;
  display: block;
  font-family: "M PLUS 2";
  font-weight: 400;
  font-size: 3rem;
  color: #00A8E2;
}
dl.type1 dt {
  position: relative;
  cursor: pointer;
}
dl.type1 dt:before,
dl.type1 dt:after {
  position: absolute;
  display: block;
  content: "";
  background-color: #00A8E2;
}
dl.type1 dt:before {
  top: calc(50% - (16px / 2));
  right: calc(26px + 6.5px);
  width: 2px;
  height: 16px;
  transition: all 0.2s;
}
dl.type1 dt.open:before {
  opacity: 0;
}
dl.type1 dt:after {
  top: calc(50% - (2px / 2));
  right: 26px;
  width: 16px;
  height: 2px;
}
dl.type1 dd {
  display: none;
  position: relative;
  padding: 30px 80px 30px 100px;
  font-size: 1.8rem;
}
dl.type1 dd span {
  position: absolute;
  top: 17px;
  left: 40px;
  display: block;
  font-family: "M PLUS 2";
  font-weight: 400;
  font-size: 3rem;
  color: #E53D1B;
}

.arrowList.type1 li a {
  position: relative;
  display: inline-block;
  width: 100%;
}
.arrowList.type1 li a:before,
.arrowList.type1 li a:after {
  position: absolute;
  display: block;
  content: "";
  transition: all 0.2s;
}
.arrowList.type1 li a:before {
  top: calc(50% - 8.5px);
  right: 23px;
  width: 18px;
  height: 18px;
  border: solid 1px #000;
  background-color: #FFF;
  border-radius: 50%;
}
.arrowList.type1 li a:after {
  top: calc(50% - 2px);
  right: 30px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.arrowList.type2 li a {
  position: relative;
  display: inline-block;
  width: 100%;
}
.arrowList.type2 li a:before,
.arrowList.type2 li a:after {
  position: absolute;
  display: block;
  content: "";
  transition: all 0.2s;
}
.arrowList.type2 li a:before {
  top: calc(50% - 3px);
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.arrowList.type2 li a:after {
  top: calc(50% - 0.5px);
  right: 0;
  width: 21px;
  height: 1px;
  background-color: #5C5C5C;
}

.arrowList.type3 li a {
  position: relative;
  display: inline-block;
  width: 100%;
}
.arrowList.type3 li a:before,
.arrowList.type3 li a:after {
  position: absolute;
  display: block;
  content: "";
  transition: all 0.2s;
}
.arrowList.type3 li a:before {
  top: calc(50%);
  right: 15px;
  width: 35px;
  height: 1px;
  background-color: #02227E;
}
.arrowList.type3 li a:after {
  top: calc(50% - 2.5px);
  right: 14px;
  width: 10px;
  height: 1px;
  background-color: #02227E;
  transform: rotate(45deg);
}

.arrowDown.type1 {
  margin-bottom: 40px;
  text-align: center;
}
.arrowDown.type1 a {
  position: relative;
  display: block;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}
.arrowDown.type1 a:before,
.arrowDown.type1 a:after {
  position: absolute;
  display: block;
  content: "";
  transition: all 0.2s;
}
.arrowDown.type1 a:before {
  left: calc(50% - (18px / 2));
  bottom: -10px;
  width: 18px;
  height: 18px;
  border: solid 1px #000;
  border-radius: 50%;
}
.arrowDown.type1 a:after {
  left: calc(50% - (4.5px / 2));
  bottom: -2px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(135deg);
}

.arrowDown.type2 {
  margin-bottom: 40px;
  text-align: center;
}
.arrowDown.type2 a {
  position: relative;
  display: block;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}
.arrowDown.type2 a:before,
.arrowDown.type2 a:after {
  position: absolute;
  display: block;
  content: "";
  transition: all 0.2s;
}
.arrowDown.type2 a:before {
  left: calc(50% - (1.4px / 2));
  bottom: -33px;
  width: 1.4px;
  height: 42px;
  background-color: #000;
}
.arrowDown.type2 a:after {
  left: calc(50% - (11.4px / 2));
  bottom: -33px;
  width: 10px;
  height: 10px;
  border-top: 1.4px solid #000;
  border-right: 1.4px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(135deg);
}

.arrowDown.type3 {
  margin-bottom: 40px;
  text-align: center;
}
.arrowDown.type3 a {
  position: relative;
  display: block;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}
.arrowDown.type3 a:before,
.arrowDown.type3 a:after {
  position: absolute;
  display: block;
  content: "";
  transition: all 0.2s;
}
.arrowDown.type3 a:before {
  left: calc(50% - 0.5px);
  bottom: -15px;
  width: 1px;
  height: 25px;
  background-color: #02227E;
}
.arrowDown.type3 a:after {
  left: calc(50% - 0.5px);
  bottom: -11px;
  width: 10px;
  height: 1px;
  background-color: #02227E;
  transform: rotate(135deg);
}

/* image */
.image.overR,
.image.overL {
  overflow: hidden;
}
.image.overR {
  width: calc(((100vw - 1280px) / 2) + 700px);
  margin-right: calc((1280px - 100vw) / 2)!important;
  /* border-radius: 240px 0 0 240px; */
  border-radius: 100vh 0 0 100vh;
}
.image.overL {
  /* width: calc(((100vw - 1280px) / 2) + 640px); */
  width: calc(((100vw - 1280px) / 2) + 600px);
  margin-left: calc((1280px - 100vw) / 2)!important;
  /* border-radius: 0 240px 240px 0; */
  border-radius: 0 100vh 100vh 0;
}
.image.overL + * {
  width: calc(100% - 640px - 40px);
}
.image.overR img,
.image.overL img {
  width: 100%!important;
  height: 100%!important;
  object-fit: cover;
}

/* list */
.list.typeCheck li {
  margin-bottom: 10px;
  padding-left: 30px;
  background-image: url("../images/ic_check_red.png");
  background-image: image-set(url("../images/ic_check_red.png") 1x, url("../images/ic_check_redx2.png") 2x);
  background-image: -webkit-image-set(url("../images/ic_check_red.png") 1x, url("../images/ic_check_redx2.png") 2x);
  background-repeat: no-repeat;
  background-position: 0 8px;
  font-weight: 400;
  font-size: 2rem;
}
.list.typeCheck.blue li {
  background-image: url("../images/ic_check_blue.png");
  background-image: image-set(url("../images/ic_check_blue.png") 1x, url("../images/ic_check_bluex2.png") 2x);
  background-image: -webkit-image-set(url("../images/ic_check_blue.png") 1x, url("../images/ic_check_bluex2.png") 2x);
}
.list.typeCheck.green li {
  background-image: url("../images/ic_check_green.png");
  background-image: image-set(url("../images/ic_check_green.png") 1x, url("../images/ic_check_greenx2.png") 2x);
  background-image: -webkit-image-set(url("../images/ic_check_green.png") 1x, url("../images/ic_check_greenx2.png") 2x);
}
.list.typeCheck.white li {
  background-image: url("../images/ic_check_white.png");
  background-image: image-set(url("../images/ic_check_white.png") 1x, url("../images/ic_check_whitex2.png") 2x);
  background-image: -webkit-image-set(url("../images/ic_check_white.png") 1x, url("../images/ic_check_whitex2.png") 2x);
}

.list.typeCheckLarge {
  margin-bottom: 50px;
}
.list.typeCheckLarge li {
  margin-bottom: 15px;
  padding-left: 40px;
  background-image: url("../images/ic_check_large.png");
  background-image: image-set(url("../images/ic_check_large.png") 1x, url("../images/ic_check_largex2.png") 2x);
  background-image: -webkit-image-set(url("../images/ic_check_large.png") 1x, url("../images/ic_check_largex2.png") 2x);
  background-repeat: no-repeat;
  background-position: 0 5px;
  font-weight: 600;
  font-size: 2.2rem;
  color: #0A5DA9;
}
.list.typeCheckLarge li:last-child {
  margin-bottom: 0;
}

/* panel */
.panel.type1 {
  padding: 80px;
  border-radius: 40px;
  background-color: #F2F2F2;
}


/* block */
.blocks.type1 {
  display: flex;
  flex-wrap: wrap;
}
.blocks.type1 > * {
  width: calc((100% - (40px * 2)) / 3);
  margin-right: 40px;
}
.blocks.type1 > *:nth-child(3n) {
  margin-right: 0;
}
.blocks.type1 .block {

}
.blocks.type1 .block .head {
  text-align: center;
  font-weight: 500;
  font-size: 2.4rem;
}
.blocks.type1 .block .image {
  text-align: center;
}
.blocks.type2 {
  display: flex;
  flex-wrap: wrap;
}
.blocks.type2 > * {
  width: calc((100% - (40px * 2)) / 3);
  margin-right: 40px;
}
.blocks.type2 > *:nth-child(3n) {
  margin-right: 0;
}
.blocks.type2 .block {

}
.blocks.type2 .block .head {
  text-align: center;
  font-weight: 500;
  font-size: 2.4rem;
}
.blocks.type2 .block .head span:nth-child(1) {
  display: block;
  text-align: center;
  font-size: 2rem;
  color: #1D1C1A;
}
.blocks.type2 .block .head span:nth-child(2) {
  margin-right: 10px;
  font-size: 3rem;
}
.blocks.type2 .block .head span:nth-child(3) {
  font-family: "M PLUS 2";
  font-size: 4rem;
}

.blocks.type3 {
  padding: 80px;
  border-radius: 10px;
  background-color: #FFF;
}
.blocks.type3 .block {
  display: flex;
  align-items: center;
}
.blocks.type3 .block .image {
  width: 480px;
  margin-right: 60px;
  margin-bottom: 0;
}
.blocks.type3 .block .text {
  width: calc(100% - 480px - 60px);
}
.blocks.type3 .block .text .head {
  font-weight: 500;
  font-size: 3.2rem;
}
.blocks.type3 .block .text .head .num {
  display: block;
  line-height: 1;
  margin-bottom: 15px;
  font-family: "M PLUS 2";
  font-weight: 500;
  font-size: 6rem;
  color: #00A8E2;
}
.blocks.type4 {
  margin-bottom: 140px;
}
.blocks.type4 .block {
  margin-bottom: 0!important;
  border-radius: 10px;
  background-color: #FFF;
}
.blocks.type4 .block .head {
  padding: 12px 15px 13px;
  box-sizing: border-box;
  border-radius: 10px 10px 0 0;
  text-align: center;
  font-family: "M PLUS 2";
  font-weight: 600;
  font-size: 3.2rem;
  color: #FFF;
}
.blocks.type4 .block .text {
  padding: 30px;
}

.blocks.type5 {

}
.blocks.type5 .block {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px!important;
  padding: 80px;
  box-sizing: border-box;
  border-radius: 40px;
  background-color: #EFECE7;
}
.blocks.type5 .block .image {
  position: relative;
  width: 480px;
  margin-right: 80px;
}
.blocks.type5 .block .image span {
  position: absolute;
  top: 20px;
  left: 20px;
  display: block;
  padding: 3px 30px;
  border-radius: 28px;
  background-color: #0558A1;
  text-align: center;
  font-weight: 600;
  font-size: 1.8rem;
  color: #FFF;
}
.blocks.type5 .block .image span.small {
  border-radius: 38px;
  font-size: 1.5rem;
}
.blocks.type5 .block .col {
  width: calc(100% - 80px - 480px);
}
.blocks.type5 .block .col > .head {
  margin-bottom: 50px;
  font-size: 4rem;
  font-weight: 500;
}
.blocks.type5 .block .col > .head span {
  font-size: 2.4rem;
}
.blocks.type5 .block .col > .head .num {
  margin-right: 15px;
  font-family: "M PLUS 2";
  font-size: 6rem;
  color: #0558A1;
}
.blocks.type5 .block .col > .head span:last-child {
  margin-left: 10px;
}
.blocks.type5 .block .col > .head span.long:last-child {
  display: block;
  margin-left: 95px;
  font-weight: 500;
  font-size: 1.8rem;
}
.blocks.type5 .block .col .messe {
  position: relative;
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 10px;
  box-sizing: border-box;
  background-color: #FFF;
  text-align: center;
  font-weight: 500;
  font-size: 2rem;
}
.blocks.type5 .block .col .messe:before {
  position: absolute;
  top: -15px;
  left: 25px;
  display: block;
  content: "";
  width: 40px;
  height: 30px;
  background-image: url("../images/ic_quot.png");
  background-image: image-set(url("../images/ic_quot.png") 1x, url("../images/ic_quotx2.png") 2x);
  background-image: -webkit-image-set(url("../images/ic_quot.png") 1x, url("../images/ic_quotx2.png") 2x);
  background-repeat: no-repeat;
  background-position: center center;
}
.blocks.type5 .subHead {
  display: inline-block;
  margin-bottom: 20px;
  padding: 3px 30px;
  border-radius: 28px;
  background-color: #0558A1;
  text-align: center;
  font-weight: 400;
  font-size: 2rem;
  color: #FFF;
}
.blocks.type5 ul:not(:last-child) {
  margin-bottom: 30px;
}
.blocks.type5 li {
  margin-bottom: 5px;
}
.blocks.type5 li .head {
  position: relative;
  padding-left: 20px;
  font-weight: 600;
  font-size: 1.8rem;
}
.blocks.type5 li .head:before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  content: "・";
}
.blocks.type5 li .head + p {
  margin-left: 1em;
}

.blocks.type6 .block {
  display: flex;
  margin-bottom: 20px!important;
  padding: 40px;
  border-radius: 20px;
  box-sizing: border-box;
  background-color: #FFF;
}
.blocks.type6 .block .image {
  width: 240px;
  margin-right: 40px;
  text-align: center;
}
.blocks.type6 .block .col {
  width: calc(100% - 240px - 40px);
}
.blocks.type6 .block .col .head {
  font-weight: 600;
  font-size: 2rem;
}
.blocks.type6 .block .col .num {
  display: block;
  font-family: "M PLUS 2";
  font-weight: 500;
  font-size: 3.2rem;
  color: #E53D1B;
}
.blocks.type6 .block .col .button div {
  font-weight: 600;
  font-size: 2rem;
}
.blocks.type6 .block .col .button .large {
  font-family: "M PLUS 2";
  font-size: 3.2rem;
}

.blocks.type7 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 80px;
  padding: 95px 80px 55px;
  box-sizing: border-box;
  border-radius: 80px;
  background-color: #FFF;
}
.blocks.type7 .block {
  width: calc((100% - 40px) / 2);
  /* margin-right: 40px; */
  margin-bottom: 40px!important;
  border-radius: 20px;
}
.blocks.type7 .block:nth-child(1) {
  background-color: #d79911;
  width: 100%;
}
.blocks.type7 .block:nth-child(2) {
  background-color: #0EADE0;
}
.blocks.type7 .block:nth-child(3) {
  background-color: #2BBCA6;
}
.blocks.type7 .block:nth-child(4) {
  background-color: #49B112;
}
.blocks.type7 .block:nth-child(5) {
  background-color: #E07113;
}
.blocks.type7 .block:nth-child(2n) {
  margin-right: 0;
}
.blocks.type7 .block * {
  color: #FFF;
}
.blocks.type7 .block > .head {
  margin-bottom: 0;
  padding: 10px;
  border-bottom: solid 1px #FFF;
  text-align: center;
  font-family: "M PLUS 2";
  font-weight: 600;
  font-size: 3.2rem;
}
.blocks.type7 .block > .head span {
  margin-right: 5px;
  font-weight: 400;
  font-size: 5rem;
}
.blocks.type7 .block > .head small {
  font-weight: 700;
  font-size: 2.4rem;
  display: block;
  line-height: 1;
  margin-bottom: 20px;
}
.blocks.type7 .block .body {
  padding: 30px 40px;
}
.blocks.type7 .block:nth-child(1) .body > ul{
  width: 50%;
  margin: 0 auto;
}
.blocks.type7 .block .body > ul > li {
  display: flex;
  align-items: start;
  margin-bottom: 25px;
}
.blocks.type7 .block .body > ul > li:last-child {
  margin-bottom: 0;
}
.blocks.type7 .block .body li .head {
  width: 123px;
  margin-right: 25px;
  border-radius: 22px;
  background-color: #FFF;
  text-align: center;
}
.blocks.type7 .block:nth-child(1) .body li .head {
  color: #d79911;
}
.blocks.type7 .block:nth-child(2) .body li .head {
  color: #0EADE0;
}
.blocks.type7 .block:nth-child(3) .body li .head {
  color: #2BBCA6;
}
.blocks.type7 .block:nth-child(4) .body li .head {
  color: #49B112;
}
.blocks.type7 .block:nth-child(5) .body li .head {
  color: #E07113;
}
.blocks.type7 .block .body li .large {
  line-height: 0.8;
  margin-left: 5px;
  margin-right: 10px;
  font-weight: 600;
  font-size: 3.2rem;
}
.blocks.type7 .block .body li .text {
  width: calc(100% - 123px - 25px);
}
.blocks.type7 .block .typeCheck li {
  background-position: 0 5px;
  font-size: 1.6rem;
}

.block.type1 {
  padding: 100px 20px;
  border-radius: 10px;
  background-color: #FFF;
  text-align: center;
}
.block.type1 .head {
  font-weight: 400;
  font-size: 3.2rem;
}
.block.type3 {
  padding: 60px;
  border-radius: 40px;
  box-sizing: border-box;
  background-image: url("../images/6-1.jpg");
  background-image: image-set(url("../images/6-1.jpg") 1x, url("../images/6-1x2.jpg") 2x);
  background-image: -webkit-image-set(url("../images/6-1.jpg") 1x, url("../images/6-1x2.jpg") 2x);
  background-repeat: no-repeat;
  box-shadow: 0px 0px 25px -10px #000;
  -webkit-box-shadow: 0px 0px 25px -10px #000;
  background-size: cover;
  text-align: center;
  color: #FFF;
}
.block.type3 .head {
  text-align: center;
  margin-bottom: 40px;
}
.block.type3 .head span {
  display: inline-block;
  line-height: calc(52 / 32);
  padding: 0 0 8px;
  border-bottom: dashed 2px #FFF;
  font-family: "M PLUS 2";
  font-weight: 600;
  font-size: 3.2rem;
}
.block.type3 .button {
  margin-bottom: 40px;
}
.block.type3 .text {
  font-size: 1.8rem;
}
  
.block.type4 {
  margin-bottom: 140px!important;
  padding: 60px;
  border-radius: 317px;
  background: #219CFB;
  background: linear-gradient(90deg, rgba(33, 156, 251, 1) 0%, rgba(103, 223, 207, 1) 94%);
  color: #FFF;
}
.block.type4 .head {
  font-family: "M PLUS 2";
  font-weight: 600;
  font-size: 2.4rem;
}
.block.type4 .head span {
  font-weight: 400;
  font-size: 5.4rem;
}
.block.type4 .text {
  font-weight: 600;
  font-size: 1.8rem;
}
.block.type4 .button a {
  display: block;
  max-width: 640px;
  margin: 0 auto;
  padding: 35px 20px;
  border-radius: 62px;
  background-color: #FFF;
  box-shadow: 0px 0px 20px 0px #FFF;
  -webkit-box-shadow: 0px 0px 20px 0px #FFF;
  font-weight: 400;
  font-family: "M PLUS 2";
  font-size: 2.8rem;
  color: #00A8E2;
}
.block.type4 .button a span {
  font-size: 3.6rem;
}

.block.contact {
  max-width: 640px;
  margin: 0 auto;
}
.block.contact.pAbsolute {
  position: absolute;
  left: calc(50% - (640px / 2));
  z-index: 5;
  bottom: -180px;
  width: 100%;
}
.block.contact .button.type1 {
  margin-bottom: 30px;
}
.block.contact.pAbsolute .button.type1 a {
  max-width: none;
}
.block.contact .button.type1 + .text {
  text-align: center;
}
.block.contact .button.type1 + .text span {
  display: block;
  font-size: 1.8rem;
}
.block.contact .button.type1 + .text small {
  display: block;
  font-size: 1.4rem;
}
.icPhone {
  padding-left: 50px;
  background-image: url("../images/ic_phone.png");
  background-image: image-set(url("../images/ic_phone.png") 1x, url("../images/ic_phonex2.png") 2x);
  background-image: -webkit-image-set(url("../images/ic_phone.png") 1x, url("../images/ic_phonex2.png") 2x);
  background-repeat: no-repeat;
  background-position: 0 10px;
  font-family: "M PLUS 2";
  font-weight: 600;
  font-size: 3.6rem;
  color: #00A8E2;
}
.block.contact .button.type1 + .text .icPhone {
  text-decoration: underline;
}

/* table */
table {
  width: 100%;
}
table th,
table td {
  padding: 10px 20px;
  text-align: left;
  font-weight: normal;
}
table th {

}
table td {
  
}

table.type1 {
  margin-bottom: 30px;
}
table.type1 tr > * {
  padding: 20px 25px;
}
table.type1 thead tr > * {
  border-right: solid 1px #FFF;
  background-color: #383838;
  color: #FFF;
}
table.type1 thead tr > *:last-child {
  border-right: none;
}
table.type1 thead tr th {
  text-align: center;
  font-weight: 600;
  font-size: 1.8rem;
}
table.type1 tbody tr > * {
  background-color: #FFF;
  border: solid 1px #EFECE7;
  text-align: center;
  font-size: 1.8rem;
}
table.type1 tbody th {
  background-color: #EFECE7;
}
table.type1 tbody td:last-child {
  background: #F55411;
  background: linear-gradient(90deg, #F55411 0%, #FFA012 94%);
  color: #FFF;
}
table.type1 tbody td.arrow {
  position: relative;
}
table.type1 tbody td.arrow:before {
  position: absolute;
  top: calc(50% - (31px / 2));
  left: calc(-31px / 2);
  display: block;
  content: "";
  width: 31px;
  height: 31px;
  background-image: url("../images/ic_arrow_right.png");
  background-image: image-set(url("../images/ic_arrow_right.png") 1x, url("../images/ic_arrow_rightx2.png") 2x);
  background-image: -webkit-image-set(url("../images/ic_arrow_right.png") 1x, url("../images/ic_arrow_rightx2.png") 2x);
  background-repeat: no-repeat;
  background-position: center center;
}

table.type2 {

}
table.type2 th,
table.type2 td {
 border: solid 1px #000;
}
table.type2 th {

}
table.type2 td {
  
}

table.typeList {

}
table.typeList th,
table.typeList td {
 display: list-item;
 list-style: none;
}
table.typeList th {
  padding-bottom: 0;
  border-bottom: none;
}
table.typeList td {
  
}

/* tabs */
.tabs {
  display: flex;
  justify-content: center;
  align-items: end;
  margin: 0 auto;
}
.tabs li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc((100% + 4px) / 3);
  height: 58px;
  line-height: calc(34 / 20);
  border-radius: 15px 15px 0 0;
  box-sizing: border-box;
  border: solid 2px #8FCC9B;
  cursor: pointer;
  text-align: center;
  font-size: 2rem;
}
.tabs li:not(:first-child) {
  margin-right: -2px;
}
.tabs li.current {
  height: 72px;
  background-color: #8FCC9B;
  font-weight: bold;
  font-size: 2.4rem;
  color: #FFF;
}
.tabContents {
  display: none;
}
#tab1.tabContents {
  display: block;
}
.tabContent {
  padding: 70px 0;
}


/* page */
.pageImage {
  height: 390px;
  overflow: hidden;
}
.pageImage img {
  margin-left: calc((100vw - 1840px) / 2);
}
.pageTitle {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
}
.pageTitle span {

}

/* archive */
body.archive .pagenation {
  text-align: center;
}
body.archive .pagenation .page-numbers:not(.prev):not(.next) {
  margin: 0 5px;
  padding: 7px 13px;
  border: solid 1px #000;
  transition: all 0.4s;
}
body.archive .pagenation .page-numbers.current,
body.archive .pagenation .page-numbers:not(.prev):not(.next):hover {
  background-color: #000;
  color: #FFF;
}

/* single */
body.single #contents .content .contentInner .article {
  margin-bottom: 100px;
}
.pagenation {
  position: relative;
}
.pagenation .screen-reader-text {
  display: none;
}
body.single .pagenation:after {
  position: absolute;
  top: 15%;
  left: 50%;
  display: block;
  content: "";
  width: 1px;
  height: 70%;
  background-color: #000;
}
.pagenation .nav-links {
  display: flex;
  justify-content: space-between;
  padding: 30px 0;
  border-top: solid 1px #000;
  border-bottom: solid 1px #000;
}
.pagenation .nav-links .nav-previous,
.pagenation .nav-links .nav-next {
  width: 40%;
}
.pagenation .nav-links .nav-previous {
  
}
.pagenation .nav-links .nav-next {
  margin-left: auto;
}
.pagenation .nav-links .nav-previous span,
.pagenation .nav-links .nav-next span {
  display: block;
  text-align: center;
}
.pagenation .nav-links .nav-previous a,
.pagenation .nav-links .nav-next a {
  position: relative;
  display: block;
}
.pagenation .nav-links .nav-previous a:after,
.pagenation .nav-links .nav-next a:after {
  position: absolute;
  top: calc(50% - 7px);
  content: "";
  width: 15px;
  height: 15px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}
.pagenation .nav-links .nav-previous a:after {
  left: 20px;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}
.pagenation .nav-links .nav-next a:after {
  right: 20px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}


.txtVertical {
  writing-mode: vertical-rl;
}

#contentMv {
  position: relative;
  margin-top: -95px;
  padding-top: 0 !important;
  /* border-bottom: solid 5px #219CFB; */
}
#contentMv * {
  font-family: "M PLUS 2";
}
#contentMv .contentInner {
  position: relative;
  max-width: 1355px;
}
#contentMv .mv {
  text-align: right;
}
#contentMv .catch {
  position: absolute;
  left: 0;
  bottom: 0;
}
#contentMv .catch span {
  padding: 2px 5px;
  font-size: 2rem;
}
#contentMv .head span {
  display: inline-block;
  margin-bottom: 35px;
  font-weight: 500;
  font-size: 3.6rem;
}
#contentMv .txtVertical {
  position: absolute;
  top: 0;
  right: 0;
  display: none;
}
#contentMv .fixedBlock {
  /* position: absolute; */
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 10;
  width: 100%;
  border-bottom: solid 10px #219CFB;
}
#contentMv .button {
  position: absolute;
  right: 0;
  bottom: 0;
}
#content1 {
  padding-top: 150px!important;
}
#content1 .blocks.type1 {
  position: relative;
}
#content1 .blocks.type1:before {
  position: absolute;
  top: -70px;
  left: calc((1200px - 100vw) / 2);
  z-index: -1;
  display: block;
  content: "";
  height: 144px;
  width: 100vw;
  background-image: url("../images/1_bg_txt.png");
  background-image: image-set(url("../images/1_bg_txt.png") 1x, url("../images/1_bg_txtx2.png") 2x);
  background-image: -webkit-image-set(url("../images/1_bg_txt.png") 1x, url("../images/1_bg_txtx2.png") 2x);
  background-repeat: no-repeat;
  background-position: center center;
}
#content2 .head .txtGrad {
  margin: 0 5px;
}
#content2 .head .borderB {
  margin-right: 5px;
}
#content3 .head .bgGrad:first-child {
  margin-right: 15px;
}
#content3 .head .bgGrad:last-child {
  margin: 0 15px;
}
#content3 .icExclam {
  max-width: 751px;
  margin: 0 auto 150px;
  background-position: 0 14px;
}
#content3 .blocks.type3 {
  margin-bottom: 60px;
}
#content3 .bgRed {
  display: inline-block;
  line-height: 70px;
  width: 70px;
  margin: 0 2px;
  text-align: center;
  font-family: "M PLUS 2";
  font-size: 5.6rem;
  font-weight: 400;
}
#content3 .block.type1 .cRed {
  margin: 0 10px;
  font-family: "M PLUS 2";
  font-size: 6.4rem;
  font-weight: 600; 
  color: #E53D1B!important;
}
#content3 p.borderB.dashed {
  display: inline-block;
  border-bottom: dashed 2px #E53D1B;
  font-weight: 600;
  font-size: 2.8rem;
  color: #E53D1B;
}
#content4 .cols2 {
  align-items: center;
}
#content4 .cols2.rev {
  margin-bottom: 100px;
}
#content4 .cols2 .overL + .text .head {
  font-weight: 500;
  font-size: 3.2rem;
}
#content4 .cols2 .overL + .text .head span {
  margin-right: 5px;
  font-size: 5rem;
}
#content4 .cols2 .overL + .text .sentence {
  font-size: 1.8rem;
}
#content4 .cols2 .overR {
  margin-bottom: 0;
  padding: 80px 0 80px 90px;
  border-radius: 270px 0 0 270px;
  box-sizing: border-box;
}
#content4 .cols2 .overR .cols2 {
  justify-content: start;
  align-items: end;
}
#content4 .cols2 .overR .col {
  width: auto;
  margin-bottom: 0;
}
#content4 .cols2 .overR .col:nth-child(1) {
  position: relative;
  padding-bottom: 18.5px;
}
#content4 .cols2 .overR .col:nth-child(1):after {
  position: absolute;
  top: calc(50% + 15px);
  right: -63px;
  display: block;
  content:"……";
  color: #FFF;
}
#content4 .cols2 .overR .col:nth-child(1) span {
  display: inline-block;
  line-height: calc(26 / 20);
  margin-bottom: 17px;
  font-family: "M PLUS 2";
  font-weight: 600;
  font-size: 2rem;
  color: #FFF;
}
#content4 .cols2 .overR .col:nth-child(2) {
  text-align: center;
}
#content4 .cols2 .overR .col:nth-child(2) .fukidashi {
  display: inline-block;
  line-height: calc(20 / 18);
  padding: 20px 22px 39px;
  background-image: url("../images/bg_fukidashi_orange.png");
  background-image: image-set(url("../images/bg_fukidashi_orange.png") 1x, url("../images/bg_fukidashi_orangex2.png") 2x);
  background-image: -webkit-image-set(url("../images/bg_fukidashi_orange.png") 1x, url("../images/bg_fukidashi_orangex2.png") 2x);
  background-position: center center;
  background-repeat: no-repeat;
  text-align: left;
  font-family: "M PLUS 2";
  font-weight: 600;
  font-size: 1.8rem;
  color: #FFF;
}
#content4 .cols2 .overR .col:nth-child(2) img {
  width: 126px!important;
  margin-top: -10px;
}
#content4 .cols2 .overR .text {
  position: relative;
  line-height: calc(50 / 40);
  padding-top: 60px;
  text-align: center;
  font-family: "M PLUS 2";
  font-weight: 600;
  font-size: 4rem;
  color: #FFF;
}
#content4 .cols2 .overR .text:before {
  position: absolute;
  top: 5px;
  left: calc(50% - (45px / 2));
  display: block;
  content: "";
  width: 45px;
  height: 45px;
  background-image: url("../images/ic_arrow_down.png");
  background-image: image-set(url("../images/ic_arrow_down.png") 1x, url("../images/ic_arrow_downx2.png") 2x);
  background-image: -webkit-image-set(url("../images/ic_arrow_down.png") 1x, url("../images/ic_arrow_downx2.png") 2x);
  background-position: center center;
  background-repeat: no-repeat;

}
#content4 .cols2 .overR + .text .head {
  position: relative;
  font-weight: 500;
  font-size: 2.4rem;
}
#content4 .cols2 .overR + .text .head span {
  margin-right: 5px;
  font-size: 5rem;
}
#content4 .cols2 .overR + .text .head .float {
  position: absolute;
  top: -15px;
  left: 0;
  font-size: 2.6rem;
  color: #00A8E2;
}
#content5 {
  position: relative;
  padding-top: 200px;
  padding-bottom: 30px;
}
#content5:before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 144px;
  background-image: url("../images/5_bg_txt.png");
  background-image: image-set(url("../images/5_bg_txt.png") 1x, url("../images/5_bg_txtx2.png") 2x);
  background-image: -webkit-image-set(url("../images/5_bg_txt.png") 1x, url("../images/5_bg_txtx2.png") 2x);
  background-position: center center;
  background-repeat: no-repeat;
}
#content5 .contentInner > .text {
  margin-bottom: 100px;
}
#content5 .head.type5 {
  font-weight: 400;
  font-size: 3.2rem;
}
#content5 .head.type5 span {
  display: inline-block;
}
#content5 .head.type5 span.large {
  margin-right: 5px;
  font-size: 4rem;
}
#content5 .contentInner > .image.alignC {
  margin-bottom: 35px;
}
#content5 .image.overL {
  margin-right: 80px;
  padding: 45px;
  border-radius: 0 40px 40px 0;
  box-sizing: border-box;
  background-color: #FFF;
  text-align: right;
}
#content5 .image.overL img {
  width: auto!important;
}
#content5 .image.overL + * {
  width: calc(100% - 640px - 80px);
}
#content5 .cols2 {
  align-items: center;
  margin-bottom: 110px;
}
#content5 .cols2 .head.type5 {
  text-align: left;
}
#content5 .cols2 .head.type5 .large {
  font-size: 3.2rem;
}
#content5 .section .head.type5 {
  position: relative;
  font-size: 3rem;
}
#content5 .section .head.type5 img {
  vertical-align: -3px;
  margin-left: 15px;
}
#content5 #section5-2 .blocks.type4 .block {
  position: relative;
}
#content5 #section5-2 .blocks.type4 .block:after {
  position: absolute;
  right: 0;
  bottom: -4px;
  display: block;
  line-height: 1;
  font-family: "M PLUS 2";
  font-size: 5.4rem;
  color: #EDEDED;
}
#content5 #section5-2 .blocks.type4 .block:nth-child(1):after {
  content: "Medical";
}
#content5 #section5-2 .blocks.type4 .block:nth-child(2):after {
  content: "Nutrition";
}
#content5 #section5-2 .blocks.type4 .block:nth-child(3):after {
  content: "Training";
}
#content5 #section5-3 .head.type5 {
  padding-top: 90px;
}
#content5 .section .head.type5 .fukidashi {
  position: absolute;
  top: 0;
  left: calc(50% - (180px / 2));
  width: 180px;
  height: 75px;
  margin-bottom: 25px;
  padding: 2px 0 0 0;
}
#content6 {
  padding-top: 110px;
}
#content6 .head.type7 + .text {
  margin-bottom: 65px;
  text-align: center;
  font-size: 1.8rem;
}
#content6 table + .text {
  margin-bottom: 80px;
  text-align: center;
  font-size: 1.8rem;
}
#content6 .panel {
  margin-bottom: 120px;
  padding-bottom: 100px;
}
#content6 .panel > .text.alignC {
  margin-bottom: 80px;
}
#content6 .panel .block {
  margin-bottom: 0;
}
#content6 .panel .block .image {
  margin-bottom: 15px;
}
#content6 .panel .block .head {
  margin-bottom: 10px;
}
#content7 {
  position: relative;
  padding-top: 70px !important;
}
#content7:before {
  position: absolute;
  top: calc(50% - 710px);
  left: calc(-20vw);
  z-index: -1;
  display: block;
  content: "";
  width: 120vw;
  /* height: 560px; */
  height: 50%;
  background-color: #F2F2F2;
  border-radius: 100% 0 0 0;
}
#content7 table {
  margin-bottom: 0;
}
#content7 table tr > * {
  width: calc(100% / 3);
}
#content7 .head.type8 + .sentence {
  margin-bottom: 60px;
  font-size: 1.8rem;
}
#content7 .section {
  position: relative;
  margin-top: 80px;
  padding-bottom: 120px;
}
#content7 .section:before {
  position: absolute;
  top: 0;
  left: calc((1280px - 100vw) / 2);
  z-index: -1;
  display: block;
  content: "";
  width: 100vw;
  height: calc(100% - 120px);
  background-color: #F2F2F2;
}
#content7 .section:after {
  position: absolute;
  left: calc((1280px - 100vw) / 2);
  bottom: 0;
  z-index: -1;
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 50vw solid transparent;
  border-left: 50vw solid transparent;
  border-top: 120px solid #f2f2f2;
  border-bottom: 0;
}
#content7 .section .cols2 {
  align-items: center;
}
#content7 .section .image.overL {
  margin-right: 80px;
  border-radius: 0 40px 40px 0;
}
#content7 .section .image.overL + * {
  width: calc(100% - 640px - 80px);
}
#content7 .head.type7 {
  margin-bottom: 80px;
}
#content7 .head.type11 {
  margin-bottom: 40px;
}
#content7 .head.type11 span {
  border-bottom: dashed 2px #1D1C1A;
  color: #1D1C1A;
}
#content7 .contentInner > .cols2 {
  justify-content: space-between;
  align-items: start;
}
#content7 .contentInner > .cols2 .image {
  position: relative;
  overflow: unset;
}
#content7 .contentInner > .cols2 .image img {
  border-radius: 0 240px 240px 0;
}
#content7 .contentInner > .cols2 .image span {
  position: absolute;
  writing-mode: vertical-rl;
  font-size: 8.2rem;
  line-height: 1;
}
#content7 .contentInner > .cols2 .image .before {
  top: -70px;
  left: 0;
}
#content7 .cols2 .image .after {
  right: 0;
  bottom: 0;
}

#content8 {
  position: relative;
  padding-top: 200px!important;
}
#content8:before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 144px;
  background-image: url("../images/8_bg_txt.png");
  background-image: image-set(url("../images/8_bg_txt.png") 1x, url("../images/8_bg_txtx2.png") 2x);
  background-image: -webkit-image-set(url("../images/8_bg_txt.png") 1x, url("../images/8_bg_txtx2.png") 2x);
  background-position: center center;
  background-repeat: no-repeat;
}
#content8 .cols2 {
  align-items: center;
  margin-bottom: 80px;
}
#content8 .cols2.rev .image {
  text-align: right;
}
#content8 .head.type7 {
  margin-bottom: 60px;
}
#content8 .head.type5 {
  text-align: left;
  font-weight: 400;
  font-size: 3.2rem;
}
#content8 .head.type5 span {
  display: inline-block;
  font-weight: 600;
}
#content8 .section .head.type7 {
  text-align: left;
}
#content8 .section .cols2 {
  align-items: start;
}
#content8 .section .cols2 .image.overR {
  border-radius: 40px 0 0 40px;
}
#content8 .section .cols2 .text {
  width: calc(100% - 640px - 80px);
  margin-right: 80px;
}
#content8 .panel .cols2 {
  align-items: start;
  margin-bottom: 0;
}
#content8 .panel .cols2 > * {
  margin-bottom: 0;
}
#content8 .panel .head.fz32 {
  line-height: calc(52 / 32);
  margin-bottom: 30px;
  font-family: "M PLUS 2";
  font-weight: 400;
}
#content8 .panel .sentence {
  /* margin-bottom: 55px; */
  font-size: 1.8rem;
}
#content8 .panel .sentence .alignR {
  font-weight: 600;
  font-size: 2.2rem;
}
#content8 .panel .sentence .alignR .small {
  margin-right: 5px;
  font-weight: 400;
  font-size: 1.6rem;
}
/* #content8 .panel .images .image:nth-child(1) {
  margin-bottom: 50px;
} */
#content8 .panel .images .image span {
  display: inline-block;
  margin-bottom: 10px;
}
#content7 table.type1,
#content8 table.type1 {
  min-width: 400px;
}
#content8 table.type1 tr > * {
  width: calc(100% / 3);
}
#content9 .head.type5 + .text {
  margin-bottom: 60px;
}
#content9 .block.contact {
  width: 100%;
  max-width: none;
}
#content9 .block.contact .text {
  font-size: 1.8rem;
}
#content9 .block.contact .text span {
  display: inline-block;
  font-weight: 600;
}
#content10 {
  position: relative;
  overflow: initial;
}
#content10 .cols2 > .text {
  width: 475px;
  margin-right: 80px;
  font-size: 2.4rem;
}
#content10 .cols2 > .text span {
  display: inline-block;
  color: #E53D1B;
}
#content10 .cols2 > .text span:first-child {
  /* margin-left: 20px; */
}
#content10 .cols2 > .text .middle {
  font-size: 3.6rem;
}
#content10 .cols2 > .text .large {
  display: block;
  max-width: 210px;
  margin: 0 0 0 auto;
  text-align: right;
  font-weight: 600;
  font-size: 5rem;
}
#content10 .cols2 > .col {
  width: calc(100% - 475px - 80px);
}
#content10 .button.type1 {
  position: absolute;
  left: calc(50% - (978px / 2));
  bottom: -78px;
  z-index: 5;
  width: 100%;
  max-width: 978px;
}
#content10 .button.type1 a {
  max-width: 978px;
  padding: 40px 20px;
}
#content11 {
  padding-top: 230px !important;
}
#content11 .head.type5 {
  font-weight: 600;
  font-size: 3.2rem;
}
#content11 .head.type5 .large {
  font-size: 4.2rem;
}
#content11 .cols2 {
  align-items: center;
}
#content11 .cols2 .head.type5 {
  text-align: left;
  font-weight: 400;
}
#content11 .cols2 .head.type5 .large {
  display: inline-block;
  font-weight: 600;
  font-size: 3.6rem;
}
#content12 .head.type7 {
  position: relative;
  z-index: 2;
  font-size: 5rem;
}
#content12 .blocks.type7 {
  margin-top: -99px;
}
#content13 .head.type12 {
  margin-bottom: 40px;
}
#content13 .head.type12 span {
  margin: 0 5px;
  font-weight: 400;
  font-size: 5.6rem;
  color: #00A8E2;
}
#content13 .text {
  margin-bottom: 60px;
}
#content13 .button.type2 {
  max-width: 960px;
  margin-bottom: 180px;
  padding: 25px;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 2.4rem;
}
#content13 .button.type2 span {
  display: inline-block;
}
#content13 .button.type2 .large {
  margin: 0 10px;
  letter-spacing: 2px;
}
#content13 .button.type2 .small {
  font-weight: 400;
  font-size: 1.6rem;
}
#content14 .cols2 {
  justify-content: space-between;
}
#content14 .cols2 .head {
  width: auto;
  margin-right: 40px;
}
#content14 .cols2 dl {
  max-width: 800px;
  width: 100%;
}
.carousel {
  width: 100vw;
  margin-left: calc((1280px - 100vw) / 2);
  margin-bottom: 150px!important;
}
.carousel .item {
  height: auto;
  width: 430px;
  margin: 0 30px;
  padding: 30px;
  /* box-sizing: border-box; */
  background-color: #EFECE7;
}
.carousel .item .image {
  text-align: center;
}
.carousel .item .image img {
  max-width: 100%;
  margin: 0 auto;
}
.carousel .item .text {
  margin-bottom: 0!important;
}
.carousel .slick-dots {
  bottom: -70px;
}
.carousel .slick-dots li {
  width: 12px;
  height: 12px;
  margin: 0 10px;
}
.carousel .slick-dots li button {
  width: 12px;
  height: 12px; 
}
.carousel .slick-dots li button::before {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #1D1C1A;
  color: transparent !important;
}

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

  #contentMv {
    margin-top: -30px;
  }
  /* #contentMv .catch {
    left: 20px;
  } */

}

.showMax1000,
.showMax1280 {
  display: none;
}

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

  .content .contentInner {
    /* width: 100%; */
    /* padding: 0 20px; */
    padding: 0 20px;
    box-sizing: border-box;
  }
  .showMax1280 {
    display: inherit;
  }
  
  .image.overR {
    /* width: calc(700px); */
    width: 470px;
    /* margin-right: -20px!important; */
    margin-right: calc(50% - 50vw)!important;
    
  }
  .image.overL {
    width: calc(640px);
    /* margin-left: -20px!important; */
    margin-left: calc(50% - 50vw)!important;
  }

  .blocks.type5 .block .image,
  .blocks.type5 .block .col {
    width: calc((100% - 80px) / 2);
  }

  .carousel {
    width: 100vw;
    margin-left: -20px;
  }

  #content4 .cols2 .overR + .text .head .float {
    top: -40px;
  }

  #content5 .image.overL {
    width: calc((100% - 80px) / 2);
  }
  #content5 .image.overL + * {
    width: calc((100% - 80px) / 2);
  }
  
  #content7::before {
    /* height: 700px; */
  }
  #content7 .section {
    margin-top: 60px;
  }
  #content7 .section::before {
    left: -20px;
  }
  #content7 .section::after {
    left: -20px;
  }
  #content9 {
    padding-bottom: 0!important;
  }

  #content10 .contentInner > .cols2 {
    display: block;
  }
  #content10 .cols2 > .text {
    margin: 0 auto 80px;
  }
  #content10 .cols2 > .col {
    width: 100%;
  }

}

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

  html {
    font-size: 58.5%;
  }
  .showMax1000 {
    display: initial;
  }

  .blocks.type3 .block .image {
    width: calc((100% - 60px) / 2);
  }
  .blocks.type3 .block .text {
    width: calc((100% - 60px) / 2);
  }
  .block.type4 {
    border-radius: 80px;
  }
  .blocks.type7 .block .body > ul > li {
    flex-wrap: wrap;
  }
  .blocks.type7 .block .body > ul > li  > * {
    width: 100%!important;
  }
  .blocks.type7 .block .body > ul > li .head {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .image.overR {
    width: calc((100% - 40px) / 2);
    /* margin-right: -20px !important; */
  }
  .image.overR + * {
    width: calc((100% - 40px) / 2);
  }
  .image.overL {
    width: calc((100% - 40px) / 2);
    /* margin-left: -20px !important; */
  }
  .image.overL + * {
    width: calc((100% - 40px) / 2);
  }
  #content7 .section .image.overL {
    width: calc((100% - 80px) / 2);
  }
  #content7 .section .image.overL + * {
    width: calc((100% - 80px) / 2);
  }
  
  #content8 .section .cols2 .text {
    width: calc((100% - 80px) / 2);
  }
  #content14 .cols2 dl {
    max-width: none;
  }

}

@media screen and (max-width:1370px) and (min-width:880px) {
  #content4 .cols2 .overR .cols2 {
    display: block;
  }
  #content4 .cols2 .overR .col:nth-child(1) {
    margin-right: 10px;
    margin-bottom: 22px;
  }
  #content4 .cols2 .overR .col:nth-child(1)::after {
    top: auto;
    right: calc(50% - 20px);
    bottom: -20px;
    transform: rotate(90deg);
  }
  #content4 .cols2 .overR .col:nth-child(2) .fukidashi {
    padding: 21px 43px 43px;
    background-size: 210px;
    font-size: 1.8rem;
  }
}

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

  .cols2 {
    flex-wrap: wrap!important;
  }
  .image.overL,
  .image.overR {
    /* width: calc(100vw - 100px); */
    width: calc(100vw - 40px);
    /* margin-bottom: 80px; */
    margin-bottom: 40px;
  }
  .image.overL + *,
  .image.overR + * {
    width: 100%;
  }

  .blocks.type5 .block .image,
  .blocks.type5 .block .col {
    width: 100%;
    margin-right: 0;
  }
  .blocks.type5 .block .image {
    max-width: 446px;
    margin: 0 auto 20px;
  }

  #content8 .panel .cols2 > * {
    display: block;
    width: 100%;
  }
  #content8 .section .cols2 .text {
    width: 100%;
  }
  #content8 .panel .images.pc {
    display: none;
  }
  #content8 .panel .image.sp {
    display: block!important;
    text-align: center;
  }
  #content8 .panel .image.sp span {
    display: block;
    margin-bottom: 5px;
  }

}

@media screen and (max-width:870px) and (min-width:641px) {

  .blocks.type2 .block .head span:nth-child(1) {
    font-size: 1.8rem;
  }
  .blocks.type2 .block .head span:nth-child(2) {
    font-size: 2.2rem;
  }
  .blocks.type2 .block .head span:nth-child(3) {
    font-size: 3.2rem;
  }

}

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

  #content3 .icExclam {
    margin: 0 auto 60px;
  }
  #content3 .bgRed {
    margin-bottom: 5px;
  }

  #content4 .cols2 .overL + .text {
    margin-bottom: 80px;
  }
  #content4 .cols2 .overR {
    margin-bottom: 80px;
  }

}

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

  .block.type4 {
    margin-bottom: 140px !important;
    padding: 60px;
  }

  .blocks.type7 {
    display: block;
  }
  .blocks.type7 > * {
    width: 100%!important;
    margin-right: 0!important;
  }

  #contentMv .catch {
    bottom: -68px;
  }
  #contentMv .catch img {
    max-width: 410px;
  }

}

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

  html {
    font-size: 50.5%;
  }

  header #siteTitle {
    width: 100%;
    margin-bottom: 10px;
  }
  header #siteTitle img {
    width: 190px;
  }
  header .search {
    width: 100%;
    text-align: center;
  }
  #contents {
    width: 100%;
    margin: 0 0 30px;
  }
  .content {
    /* padding: 80px 0; */
    padding: 60px 0;
  }
  #contents .content:not(.bg):not(:first-child) {
    /* padding: 0 0 60px; */
  }
  .content.pRelative + .content {
    padding-top: 250px !important;
  }
  .article {
    margin: 0 10px 30px;
  }
  #side {

  }

  /* header */
  header.type1 {
    padding: 10px 20px;
  }
  header #headerInner {
    width: 100%!important;
  }
  header.type3 #headerInner #siteTitle {
    text-align: left;
  }
  header.type4 #headerInner {
    text-align: left;
  }

  /* menu */
  header nav {
    position: fixed;
    top: 0;
    right: -100vw;
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.9);
    z-index: 100;
  }
  header nav ul {
    display: block !important;
    width: 100%;
  }
  header nav > ul {
    margin: 100px 0;
  }
  header nav ul li {
    margin-left: 0!important;
  }
  header nav ul li a {
    display: block;
    padding: 10px 10px;
  }
  .menuButton {
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    z-index: 100000;
    padding: 20px;
    background-color: #CCC;
    cursor: pointer;
  }
  .memberButton {
    position: absolute;
    left: 0px;
    top: 0px;
    display: block;
    z-index: 100000;
  }
  .menu-trigger,
  .menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
  }
  .menu-trigger {
    display: block;
    color: #FFF;
    font-size: 14px;
    font-size: 12px; /*add UDW 20161212*/
    height: 21px;
    overflow: hidden;
    position: relative;
    padding: 0;
    text-align: center;
    cursor: pointer;
  }
  .menu-trigger {
    position: relative;
    width: 20px;
    height: 21px;
  }
  .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #000;
  }
  .underSpHeader .menu-trigger span {
    background-color: #222;
  }
  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  .menu-trigger span:nth-of-type(2) {
    top: 10px;
  }
  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  .active .menu-trigger span {
    background-color: #000;
    color: #000;
  }
  .active .menu-trigger span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-45deg);
    transform: translateY(10px) rotate(-45deg);
  }
  .active .menu-trigger span:nth-of-type(2) {
    opacity: 0;
  }
  .active .menu-trigger span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(45deg);
    transform: translateY(-10px) rotate(45deg);
  }

  /* slider */
  .slider.type1 .slick-list {
    height: 500px;
    margin-left: calc( (100vw - ((500 / 540) * 1100px)) / 2 );
  }
  .slider.type1 .slick-slide img {
    width: calc((500 / 540) * 1100px);
    height: 100%;
  }
  .slider .slick-dots button::before {
    width: 5px;
    height: 5px;
  }
  .slider .slick-dots {
    bottom: 10px;
  }
  .carousel .slick-prev {
    left: 25px;
  }
  .carousel .slick-next {
    right: 25px;
  }
  .carousel .slick-list {
    margin: 0;
  }
  .carousel .slick-slide a {
    width: 100% !important;
    padding: 0 5px;
    box-sizing: border-box;
  }
  .carousel .slick-list li a img {
    max-width: 100%;
    height: auto;
  }

  .button.type1 a {
    max-width: none;
  }

  /* main */
  .image.overR img,
  .image.overL img {
    height: auto!important;
  }
  .panel.type1 {
    padding: 40px;
  }
  .block.type1 {
    padding: 40px 20px;
  }
  .blocks.type2 {
    display: block;
  }
  .blocks.type2 > * {
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px !important;
  }
  .blocks.type2 .image {
    text-align: center;
  }
  .blocks.type3 {
    padding: 20px;
  }
  .blocks.type3 .block {
    display: block;
  }
  .blocks.type3 .block > * {
    width: 100%!important;
    margin-right: 0!important;
  }
  .blocks.type3 .block .image {
    margin-bottom: 30px;
  }
  .blocks.type3 .block .text .head {
    position: relative;
    padding-left: 65px;
    font-size: 2.8rem;
    padding-top: 0;
  }
  .blocks.type3 .block .text .head .num {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    font-size: 5.4rem;
  }
  .blocks.type5 .block {
    padding: 40px;
  }
  .blocks.type5 .block .image span {
    top: 10px;
    left: 10px;
    padding: 3px 15px;
    font-size: 1.6rem;
  }
  .blocks.type5 .block .image span.small {
    border-radius: 30px;
    font-size: 1.2rem;
  }
  .blocks.type6 .block {
    display: block;
  }
  .blocks.type6 .block > * {
    width: 100%!important;
    margin-right: 0!important;
  }
  .blocks.type7 {
    padding: 70px 20px 30px;
  }
  .content .contentInner {

  }
  #contentMv .text {
    margin-bottom: 10px;
  }
  #contentMv .catch .text span {
    padding: 2px 5px;
    font-size: 1.4rem;
  }
  #contentMv .head span {
    margin-bottom: 20px;
    font-size: 2.4rem;
  }
  #contentMv .catch img {
    max-width: 220px;
  }

  /* footer */
  footer img {
    max-width: 260px;
  }
  footer #footerInner {
    width: 100%!important;
    box-sizing: border-box;
  }
  footer.type1 #footerInner {
    display: block;
    padding-top: 0;
    padding-bottom: 0;
  }
  footer.type1 #footerMenu {
    margin-bottom: 40px;
  }
  footer.type1 #copyright {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  /* common */
  .pc {
    display: none!important;
  }

  .alignC_sp {
    text-align: center;
  }
  .alignL_sp {
    text-align: left;
  }
  .alignR_sp {
    text-align: right;
  }

  .mb10_sp {
    margin-bottom: 10px;
  }
  .mb20_sp {
    margin-bottom: 20px;
  }
  .mb40_sp {
    margin-bottom: 40px;
  }
  .mb60_sp {
    margin-bottom: 60px;
  }
  .mb80_sp {
    margin-bottom: 80px;
  }
  .mb100_sp {
    margin-bottom: 100px;
  }
  .mb120_sp {
    margin-bottom: 120px;
  }
  .mb140_sp {
    margin-bottom: 140px;
  }
  .mb160_sp {
    margin-bottom: 160px;
  }
  .mb180_sp {
    margin-bottom: 180px;
  }
  .mb200_sp {
    margin-bottom: 200px;
  }

  .cols1_sp {
    display: block;
  }
  .cols1_sp > * {
    width: 100%!important;
    margin-right: 0!important;
    /* margin-bottom: 40px; */
    margin-bottom: 0;
  }
  .cols2_sp,
  .cols3_sp,
  .cols4_sp {
    display: flex;
    flex-wrap: wrap;
  }
  .cols2_sp > *,
  .cols3_sp > *,
  .cols4_sp > * {
    margin-right: 40px!important;
    margin-bottom: 40px;
  }
  .cols2_sp > *:nth-child(2n),
  .cols3_sp > *:nth-child(3n),
  .cols4_sp > *:nth-child(4n) {
    margin-right: 0!important;
  }
  .cols2_sp > * {
    width: calc((100% - (40px * 1)) / 2)!important;
  }
  .cols3_sp > * {
    width: calc((100% - (40px * 2)) / 3)!important;
  }
  .cols4_sp > * {
    width: calc((100% - (40px * 3)) / 4)!important;
  }

  .layoutCols1_sp {
    display: block;
  }
  .layoutCols1_sp > * {
    width: 100%!important;
    margin-right: 0!important;
  }
  .layoutCols1_sp .colsMain {
    margin-bottom: 40px;
  }

  .content .block:not(:last-child) {
    margin-bottom: 40px;
  }
  .content .image {
    margin-bottom: 15px;
  }
  .content .text:not(:last-child) {
    margin-bottom: 40px;
  }
  .content .text p:not(:last-child) {
    margin-bottom: 20px;
  }

  /* table */
  table.typeList_sp {

  }
  table.typeList_sp th,
  table.typeList_sp td {
   display: list-item;
   list-style: none;
  }
  table.typeList_sp th {
    padding-bottom: 0;
    border-bottom: none;
  }
  table.typeList_sp td {
    
  }

  /* common */
  .icExclam {
    background-size: 28px;
  }
  .icPhone {
    padding-left: 35px;
    background-size: 25px auto;
  }
  .head.type2 {
    margin-bottom: 80px;
  }
  .head.type4 span:nth-child(1) {
    margin-bottom: 10px;
    font-size: 2.6rem;
  }
  .head.type4 span:nth-child(2) {
    line-height: 1.4;
    font-size: 4.4rem;
  }
  .head.type5 {
    margin-bottom: 20px;
  }
  .head.type7 {
    font-size: 2.8rem;
  }
  .head.type7 span {
    font-size: 4.6rem!important;
  }
  .head.type8 div {
    font-size: 2.6rem;
  }
  .head.type8 div span {
    font-size: 3.4rem;
  }
  .head.type13 {
    margin-bottom: 30px;
  }
  .head.type13 span {
    font-size: 2rem;
  }
  .head.type13 span.large {
    font-size: 4.2rem;
  }
  .block.type3 {
    padding: 20px;
  }
  .block.type3 .head span {
    padding: 0 0px 8px;
    font-size: 2.4rem;
  }
  .block.type4 {
    margin-bottom: 80px !important;
    padding: 30px;
    border-radius: 40px;
  }
  .block.type4 .head {
    font-size: 2rem;
  }
  .block.type4 .head span {
    font-size: 5rem;
    line-height: 1.4;
  }
  .block.type4 .text {
    text-align: left;
    font-size: 1.6rem;
  }
  .block.type4 .button a {
    padding: 20px 15px;
    border-radius: 62px;
    font-size: 2.4rem;
  }
  .block.type4 .button a span {
    display: block;
    font-size: 3rem;
  }
  .blocks.type1 {

  }
  .blocks.type1 > * {
    width: calc((100% - 20px) / 2)!important;
    margin-right: 20px!important;
    margin-bottom: 40px!important;
  }
  .blocks.type1 > *:last-child {
    margin-bottom: 0!important;
  }
  .blocks.type1 > *:nth-child(2n) {
    margin-right: 0!important;
  }
  .blocks.type1 .block .head {
    font-size: 1.8rem;
  }
  .blocks.type4 .block {
    margin-bottom: 40px!important;
  }
  .blocks.type4 .block:last-child {
    margin-bottom: 0!important;
  }
  .blocks.type5 .block .col > .head span:last-child {
    margin-left: 0;
    font-size: 2.2rem;
  }
  .blocks.type5 .block .col > .head span.long:last-child {
    margin-left: 0;
  }
  .button.type1 a span {
    font-size: 2.6rem;
  }
  .button.type1 a span:nth-child(1) {
    font-size: 1.6rem;
  }
  .button.type1 a .large {
    font-size: 3.2rem;
  }
  .button.type3 a {
    width: 56px;
    padding: 21px 0px 13px 10px;
    border-radius: 15px 0 0;
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    text-align: left;
    font-size: 1.9rem;
  }
  .block.contact.pAbsolute {
    position: absolute;
    left: 20px;
    z-index: 5;
    bottom: -150px;
    width: calc(100% - (20px * 2));
  }
  .fukidashi.type1 {
    margin-bottom: 30px;
    background-size: contain;
  }
  .image.overL,
  .image.overR {
    margin-bottom: 40px !important;
  }
  .image.overL {

  }
  .image.overR {
    margin-right: -20px;
    width: calc(100% + 20px) !important;
  }
  dl.type1 dt span,
  dl.type1 dd span {
    left: 20px;
  }
  dl.type1 dt {
    margin-bottom: 10px;
    padding: 28px 55px 28px 60px;
  }
  dl.type1 dd {
    padding: 30px 55px 30px 60px;
  }
  .list.typeCheck li {
    background-position: 0 7px;
    background-size: 19px auto;
  }
  .carousel {

  }
  .carousel .item {
    width: auto;
    margin: 0 10px;
  }


  /* page */
  .pageImage img {
    margin-left: calc((100vw - (1840px * (295 / 390) )) / 2);
    height: 100%;
  }

  #contentMv {
    margin-top: -71px;
  }
  #contentMv .mv {
    margin-right: -20px;
  }
  #contentMv .mv img {
    width: 100%;
  }
  #content1 {
    padding-top: 80px !important;
  }
  #content1 .blocks.type1:before {
    top: -80px;
    left: 0;
    height: 144px;
    width: 100vw;
    background-size: auto 60px;
  }
  #content3 .head .bgGrad:last-child {
    margin-left: 0;
  }
  #content3 .icExclam {
    margin-bottom: 60px;
    background-position: 0 4px;
  }
  #content3 .block.type1 .head {
    text-align: left;
    font-size: 2.8rem;
  }
  #content3 .bgRed {
    /* line-height: 55px;
    width: 55px;
    font-size: 5rem; */
    line-height: 46px;
    width: 46px;
    font-size: 4rem;
  }
  #content3 .block.type1 .cRed {
    /* font-size: 6.2rem; */
    font-size: 4.5rem;
  }
  #content4 {
    padding-bottom: 60px!important;
  }
  #content4 .cols2 .overR {
    padding: 80px 20px 80px 20px;
    border-radius: 80px 0 0 80px;
  }
  #content4 .cols2 .overR .col:nth-child(1)::after {
    top: auto;
    right: calc(50% - 20px);
    bottom: -20px;
    transform: rotate(90deg);
  }
  #content4 .cols2 .overR .col:nth-child(1) {
    margin-bottom: 22px;
  }
  #content4 .cols2 .overR .col:nth-child(2) .fukidashi {
    padding: 21px 43px 43px;
    background-size: contain;
    font-size: 1.8rem;
  }
  #content5 {
    padding-top: 150px;
  }
  #content5::before {
    height: 85px;
    background-size: auto 60px;
  }
  #content5 .cols2 {
    margin-bottom: 70px;
  }
  #content5 .section .head.type5 {
    margin-bottom: 40px;
  }
  #content5 .section .head.type5 .fukidashi {
    padding: 7px 0 0 0;
  }
  #content6 .blocks.type1 {
    display: block;
  }
  #content6 .blocks.type1 > * {
    width: 100%!important;
    margin-right: 0!important;
  }
  #content6 table {
    width: 600px;
    margin-bottom: 0;
  }
  #content7 {
    padding-bottom: 40px !important;
  }
  #content7::before {
    top: calc(50% - 970px);
    left: calc(-70vw);
    width: 170vw;
  }
  #content7 .contentInner > .cols2 .image span {
    font-size: 4rem;
  }
  #content7 .cols2 .image .after {
    bottom: -20px;
  }
  #content8 {
    padding-top: 150px !important;
  }
  #content8 .head.type7 {
    margin-bottom: 40px;
  }
  #content8 .panel .head.fz32 {
    font-size: 2.8rem!important;
  }
  #content8::before {
    height: 105px;
    background-size: auto 60px;
  }
  #content8 table {
    width: 400px;
    margin-bottom: 0;
  }
  #content8 .section .head.type7 span {
    display: block;
    font-size: 4.2rem !important;
  }
  #content8 .panel .image.sp span {
    display: block;
    margin-bottom: 10px;
  }
  #content10 {
    padding-bottom: 140px;
  }
  #content10 .button.type1 {
    left: 20px;
    bottom: -78px;
    width: calc(100% - (20px * 2));
  }
  #content11 {
    padding-top: 170px !important;
  }
  #content11 .head.type5 {
    margin-bottom: 60px;
    font-size: 2.8rem;
  }
  #content11 .head.type5 .large {
    font-size: 3.8rem;
  }
  #content12 .blocks.type7 {
    margin-top: -88px;
  }
  #content12 .blocks.type7 .block:nth-child(1) .body > ul{
    width: 100%;
  }
  #content13 {
    padding-bottom: 30px!important;
  }
  #content13 .head.type12 span {
    display: block;
    font-size: 5.2rem;
  }
  #content13 .blocks.type1 {
    margin-bottom: 40px;
  }
  #content13 .button.type2 {
    margin-bottom: 90px;
  }
  #content14 {
    padding-bottom: 40px!important;
  }
  .table_container {
    margin-bottom: 30px;
  }
  .carousel .slick-dots {
    bottom: -50px;
  }

}

@media screen and (min-width:641px) {
  header {
    min-max-width: 1280px;
    box-sizing: border-box;
  }
  header #siteTitle {

  }
  header #headerLeft {
    margin-bottom: 20px;
  }
  .slider {
    min-max-width: 1280px;
  }
  #main {
    min-max-width: 1280px;
  }
  #contents {

  }
  #side {

  }
  footer {
    min-max-width: 1280px;
  }

  /* menu */
  header nav {
    clear: both;
    display: block!important;
    opacity: 1!important;
  }
  header nav ul {

  }
  header nav ul li {
    text-align: center;
  }
  header nav ul li .subNav {
    position: absolute;
    top: 120px;
    left: 0;
    z-index: 10;
    width: 100vw;
    height: 0;
    opacity: 0;
    background-color: rgba(35,24,21,0.9);
    transition: all 0.4s;
    overflow: hidden;
  }
  header nav ul li.open .subNav {
    display: block!important;
    height: 200px;
    opacity: 1;
    overflow: inherit;
  }
  header nav ul li .subNav:after {
    position: absolute;
    left: 0;
    top: -35px;
    display: block;
    content: "";
    width: 100%;
    height: 50px;
  }
  header nav ul li .subNav ul {
    justify-content: center;
  }
  .menuButton {
    display: none;
  }

  /* common */
  .sp {
    display: none!important;
  }

}


@media screen and (min-width:1840px) {

  /*page*/
  .pageImage img {
    width: 100%;
    margin-left: 0;
  }

}




