@charset "UTF-8";
/* ===================================================================
CSS information

 File Name  : common.css
 Style Info : 見出し、ボタン、表など繰り返し使うパーツのスタイルを定義
=================================================================== */
*, *:before, *:after {
  -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
}

html {
  overflow-y: scroll;
  line-height: 1;
  font-size: 62.5%;
}
body {
  background: #fff;
  color: #2d2d2d;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, Verdana, sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  word-break: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
}
  @media screen and (max-width: 999px) {
    body {
      font-size: 3.73vw;
    }
  }

/*----------------------------------------------------
  link要素
--------------------------------------------------- */
a {
  transition: all 0.3s ease-in-out 0s;
}
a:link {
  color: #008359;
}
a:visited {
  color: #008359;
}
a:hover {
  text-decoration: none;
  color: #008359;
}
a:active {
  color: #008359;
}
:focus-ring {
  outline: dotted 1px #F6AB00;
}
:-moz-focusring {
  outline: dotted 1px #F6AB00;
}

/*----------------------------------------------------
  img要素
--------------------------------------------------- */
img {
  line-height: 1;
  /*font-size: 0;*/
  vertical-align: top;
  height: auto;
  max-width: 100%;
  transition: all 0.2s ease-in-out 0s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*----------------------------------------------------
  見出し要素
--------------------------------------------------- */
h1,h2,h3,h4,h5,h6 {
  line-height: 1.5;
}

/*----------------------------------------------------
 フォントファミリー
--------------------------------------------------- */
.mincho {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "Hiragino Mincho ProN W3", 'Noto Serif JP', serif;
}

/*----------------------------------------------------
  スクロールバー
--------------------------------------------------- */

/*スクロールバー全体*/
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/*スクロールバーの軌道*/
::-webkit-scrollbar-track {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
}

/*スクロールバーの動く部分*/
::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.5);
  border-radius: 10px;
  box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
}
  @media screen and (max-width: 999px) {
    ::-webkit-scrollbar {
        width: 5px;
    }
    ::-webkit-scrollbar-track {
      border-radius: 10px;
      box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
    }
    ::-webkit-scrollbar-thumb {
      background-color: rgba(0,0,0,0.5);
      border-radius: 10px;
      box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
    }
  }

/*----------------------------------------------------
  汎用クラス
--------------------------------------------------- */
.inline {
  display:inline;
}
.inline_block {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
.block {
  display:block;
}
.flex {
  display: flex;
}
/* 横逆順 */
.fx_r_reverse {
  flex-direction: row-reverse;
}
/* 縦逆順 */
.fx_c_reverse {
  flex-direction: column-reverse;
}
/*アイテム折返し*/
.fx_wrap {
  flex-wrap: wrap;
}
/* 等間隔に配置 */
.fx_between {
  justify-content: space-between;
}
/* センターに配置 */
.fx_center {
  justify-content: center;
}
/* 右側に配置 */
.fx_end {
  justify-content: flex-end;
}
/*上下中央寄せ*/
.fx_all_center {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.table_cell {
  display: table-cell;
  vertical-align: middle;
}
.fr {
  float: right;
}
.fl {
  float: left;
}
.tC {
  text-align: center;
}
.tR {
  text-align: right;
}
.pc_none {
  display:none;
}
.clearfix:after {
  content: ""; 
  display: block; 
  clear: both;
}
.alpha:hover {
  opacity: 0.7;
}
.no_alpha {
  opacity: 1!important;
}

@media screen and (max-width: 999px) {
  .pc_none {
    display:block;
  }
  .sp_none {
    display:none;
  }
  .fl,.fr {
    box-sizing:border-box;
    width:100%!important;
    float:none!important;
  }
  .sp_block {
    display: block;
  }
}

/*----------------------------------------------------
 共通カラム
--------------------------------------------------- */
#page {
  overflow: hidden;
}
#contents {
  line-height: 1.9;
}
#contents a:hover img{
  opacity: 0.70;
}

.wrapper {
  position: relative;
  z-index: 5;
  max-width: 1440px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
.inner {
  position: relative;
  z-index: 5;
  max-width: 1240px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
  @media screen and (max-width: 999px) {
    html, body, #page {
      min-width:100%!important;
      max-width:100%!important;
      width:100%!important;
    }
    #contents {
      line-height: 1.75;
    }
    .wrapper, .inner {
      width: 100%;
      max-width: 100%;
      padding-left: 9.33vw;
      padding-right: 9.33vw;
    }
  }

/*----------------------------------------------------
	フッター
----------------------------------------------------*/
#footer {
  padding: 100px 0;
}
.ft_wrap {
  line-height: 1.6;
}
.ft_wrap > div {
  min-height: 250px;
}
  @media screen and (max-width: 999px) {
    #footer {
      padding: 12vw 0;
    }
    .ft_wrap > div {
      min-height: auto;
    }
  }

.ft01 {
  border-right: solid 1px #2d2d2d;
  flex: 0 0 auto;
  padding-right: 4%;
}
.ft01_box {
  width: fit-content;
}
.ft01_box h2 {
  margin-bottom: 28px;
}
.ft01_box h2 small {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.ft01_box h2 span {
  display: block;
}
.ft_btn a {
  display: block;
  max-width: 260px;
  font-size: 1.8rem;
  padding: 9px 20px;
  border: solid 2px #008359;
  text-align: center;
  text-decoration: none;
}
.ft_btn a:hover {
  background: #008359;
  color: #fff;
}
  @media screen and (max-width: 999px) {
    .ft01 {
      border-right: none;
      border-bottom: solid 1px #2d2d2d;
      padding-right: 0!important;
      padding-bottom: 12vw;
    }
    .ft01_box {
      width: 100%;
      height: auto;
    }
    .ft01_box h2 {
      margin-bottom: 7.46vw;
    }
    .ft01_box h2 small {
      font-size: 4vw;
      margin-bottom: 4.26vw;
    }
    .ft01_box h2 span {
      text-align: center;
    }
    .ft01_box h2 span img {
      width: 69.33vw!important;
      height: auto;
    }
    .ft_btn a {
      max-width: 69.33vw;
      font-size: 4.8vw;
      padding: 2.66vw 5.33vw;
      margin: 0 auto;
    }
  }

.ft02 {
  position: relative;
  border-right: solid 1px #2d2d2d;
  flex: 0 0 auto;
  padding: 0 4%;
  flex-direction: column;
  justify-content: space-between;
}
.ft02_box {
  padding-top: 48px;
}
.ft02_box p {
  margin-bottom: 15px;
}
.ft02_box p a {
  color: #008359;
  text-decoration: none;
}
.copyright {
  display: block;
  color: #969696;
  font-size: 1.3rem;
}
.copyright.pc_none {
  display: none;
}
  @media screen and (max-width: 999px) {
    .ft02 {
      display: block;
      border-right: none;
      border-bottom: solid 1px #2d2d2d;
      padding: 10.66vw 5.33vw!important;
    }
    .ft02_box {
      padding-top: 0;
    }
    .ft02_box p {
      margin-bottom: 3.33vw;
    }
    .ft02_box p:last-child {
      margin-bottom: 0;
    }
    .copyright {
      margin-top: 6.66vw;
      font-size: 3.46vw;
      text-align: center;
    }
    .copyright.pc_none {
      display: block;
    }
    .copyright.sp_none {
      display: none;
    }
  }

.ft03 {
  flex: 1 1 320px;
  max-width: none;
  min-width: 280px;
  padding-left: 4%;
}
.ft03_box h3 {
  margin-bottom: 20px;
}
.ft03_box > ul > li > a {
  text-decoration: none;
  display: inline-block;
  color: #2d2d2d;
  font-size: 2rem;
}
.ft03_box li ul {
  margin-bottom: 10px;
}
.ft03_box li li {
  margin-right: 15px;
}
.ft03_box li li a {
  text-decoration: none;
  display: inline-block;
  color: #2d2d2d;
  font-size: 1.4rem;
}
.ft03_box li a:hover {
  color: #008359!important;
}
.ft03_box p {
  margin-top: 25px;
  font-size: 1.3rem;
  white-space: nowrap;
}
  @media screen and (max-width: 1099px) {
    .ft01_box h2 span img {
      width: 230px;
      height: auto;
    }
    .ft01 {
      padding-right: 2.5%;
    }
    .ft02 {
      padding: 0 2.5%;
    }
    .ft03 {
      padding-left: 2.5%;
    }
  }
  @media screen and (max-width: 999px) {
    .ft03 {
      flex: auto;
      max-width: 100%;
      min-width: 100%;
      padding: 12vw 5.33vw 10.66vw 5.33vw;
      border-bottom: solid 1px #2d2d2d;
    }
    .ft03_box h3 {
      margin-bottom: 6.13vw;
    }
    .ft03_box h3 img {
      width: 42.78vw;
      height: auto;
    }
    .ft03_box > ul > li {
      margin-bottom: 1.66vw;
    }
    .ft03_box > ul > li > a {
      font-size: 5.33vw;
    }
    .ft03_box li ul {
      margin-top: 1.33vw;
      margin-bottom: 3.33vw;
    }
    .ft03_box li li {
      margin: 0 0 2vw 0;
    }
    .ft03_box li li a {
      font-size: 3.73vw;
    }
    .ft03_box p {
      margin-top: 6.66vw;
      font-size: 3.46vw;
    }
  }

/*----------------------------------------------------
  共通ボタン
--------------------------------------------------- */
.totop {
  position: absolute;
  right: 20px;
  bottom: 0;
  z-index: 10;
  transition: all 0.3s ease-in-out 0s;
}
.totop:hover {
  opacity: 0.7;
}
  @media screen and (max-width: 999px) {
    .totop {
      right: 9.33vw;
      bottom: 25vw;
    }
    .totop img {
      width: 13.33vw;
      height: auto;
    }
  }

/*----------------------------------------------------
  共通メニュー
--------------------------------------------------- */

/*transition*/
.trs {
  -webkit-transition: all .1s ease;
  -moz-transition: all .1s ease;
  -ms-transition: all .1s ease;
  -o-transition: all .1s ease;
  transition: all .1s ease;
}
/*trp*/
.trp {
  -webkit-transition: opacity .1s ease;
  -moz-transition: opacity .1s ease;
  -ms-transition: opacity .1s ease;
  -o-transition: opacity .1s ease;
  transition: opacity .1s ease;
  opacity: 1;
  filter: alpha(opacity=100);
}
.trp:hover {
  opacity: .6;
  filter: alpha(opacity=60);
}
.trs-dr05 {
  -webkit-transition-duration: .5s;
  -moz-transition-duration: .5s;
  -ms-transition-duration: .5s;
  -o-transition-duration: .5s;
  transition-duration: .5s;
}
.trs-tfCb {
  -webkit-transition-timing-function: cubic-bezier(0, .96, .4, .99);
  -moz-transition-timing-function: cubic-bezier(0, .96, .4, .99);
  -ms-transition-timing-function: cubic-bezier(0, .96, .4, .99);
  -o-transition-timing-function: cubic-bezier(0, .96, .4, .99);
  transition-timing-function: cubic-bezier(0, .96, .4, .99);
}

.menuTrigger {
  position: fixed;
  z-index: -5;
  top: 0;
  right: 0;
  display: block;
  width: 90px;
  height: 90px;
  cursor: pointer;
  background: #2d2d2d;
  opacity: 0;
  transition: all 1.2s ease-in-out 2.6s;
}
#page.active .menuTrigger {
  opacity: 1;
  z-index: 100;
}
.hbMenu_open .menuTrigger {
  z-index: 200!important;
  transition: .3s!important;
}
.menuIcon_line {
  position: absolute;
  left: 50%;
  margin-left: -20px;
  width: 40px;
  height: 1px;
  background: #fff;
}
.menuIcon_line:nth-of-type(1) {
  top: calc(50% - 8px);
}
.menuIcon_line:nth-of-type(2) {
  top: calc(50% + 8px);
}
  @media screen and (max-width: 999px) {
    .menuTrigger {
      width: 16vw;
      height: 16vw;
    }
    .menuIcon_line {
      margin-left: -3.5vw;
      width: 7vw;
    }
    .menuIcon_line:nth-of-type(1) {
      top: calc(50% - 1.66vw);
    }
    .menuIcon_line:nth-of-type(2) {
      top: calc(50% + 1.66vw);
    }
  }

/* open */
.hbMenu_open .menuTrigger .menuIcon_line:nth-of-type(1) {
  top: 50%;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.hbMenu_open .menuTrigger .menuIcon_line:nth-of-type(2) {
  top: 50%;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.hbNav {
  position: fixed;
  top: 0;
  right: 0;
  width: 520px;
  max-width: 100vw;
  height: 100vh;
  background: rgba(45,45,45,0.8);
  z-index: 150;
  opacity: 0;
  transform: translateX(280px);
  pointer-events: none;
  transition: opacity .55s ease, transform .65s cubic-bezier(.22,.61,.36,1);
}
#page.hbMenu_open .hbNav {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
  @media screen and (max-width: 999px) {
    .hbNav {
      width: 100%;
      max-width: 100%;
      background: rgba(45,45,45,0.85);
      transform: translateX(40vw);
    }
  }

.hb_inner {
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 50px 30px;
  line-height: 1.6;
}
.hb_inner a {
  color: #fff;
  text-decoration: none;
}
.hb_box {
  max-width: 360px;
  margin: 0 auto;
}
.hb_logo {
  margin-bottom: 40px;
}
  @media screen and (max-width: 999px) {
    .hb_inner {
      padding: 8vw;
    }
    .hb_box {
      max-width: 100%;
    }
    .hb_logo {
      margin-bottom: 8vw;
    }
    .hb_logo img {
      width: 46.52vw;
      height: auto;
    }
  }

.hb_menu {
  padding-bottom: 40px;
}
.hb_menu > li {
  margin-bottom: 4px;
}
.hb_menu > li:last-child {
  margin-bottom: 0;
}
.hb_menu > li > a {
  display: block;
  font-size: 2.4rem;
  padding: 8px 20px;
  background: rgba(255,255,255,0.15);
}
.hb_menu > li > a:hover {
  background: rgba(255,255,255,0.5);
}
.hb_menu li ul {
  background: rgba(255,255,255,0.15);
  padding-bottom: 5px;
}
.hb_menu li li {
  margin-bottom: 4px;
}
.hb_menu li li:last-child {
  margin-bottom: 0;
}
.hb_menu li li a {
  display: block;
  width: calc(100% - 10px);
  margin: 0 auto;
  font-size: 1.8rem;
  padding: 12px 20px 12px 36px;
  background: url("../img/arrow02a.svg") 16px center no-repeat;
  background-size: 12px auto;
  background-color: rgba(255,255,255,0.15);
}
.hb_menu li li a:hover {
  background: url("../img/arrow02b.svg") 16px center no-repeat;
  background-size: 12px auto;
  background-color: rgba(255,255,255,0.5);
}
  @media screen and (max-width: 999px) {
    .hb_menu {
      padding-bottom: 5.33vw;
    }
    .hb_menu > li {
      margin-bottom: 1.33vw;
    }
    .hb_menu > li:last-child {
      margin-bottom: 0;
    }
    .hb_menu > li > a {
      font-size: 5.33vw;
      padding: 2.66vw 20px;
      background: rgba(255,255,255,0.12);
    }
    .hb_menu li ul {
      padding-bottom: 1.66vw;
    }
    .hb_menu li li {
      margin-bottom: 1.33vw;
    }
    .hb_menu li li:last-child {
      margin-bottom: 0;
    }
    .hb_menu li li a {
      width: calc(100% - 3.33vw);
      font-size: 4vw;
      padding: 2.66vw 2.66vw 2.66vw 8.4vw;
      background: url("../img/arrow02a.svg") 3.33vw center no-repeat;
      background-size: 3vw auto;
      background-color: rgba(255,255,255,0.12);
    }
    .hb_menu li li a:hover {
      background: url("../img/arrow02b.svg") 3.33vw center no-repeat;
      background-size: 3vw auto;
      background-color: rgba(255,255,255,0.5);
    }
  }

.hb_btn li {
  margin-bottom: 18px;
}
.hb_btn li:last-child {
  margin-bottom: 0;
}
.hb_btn li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100px;
  border: solid 1px #fff;
  text-align: center;
  line-height: 1.5;
}
.hb_btn li a:hover {
  background: #fff;
  color: #2d2d2d;
}
.hb_btn li a b {
  display: block;
  font-size: 2.4rem;
  font-weight: 400;
}
.hb_btn li a span {
  display: block;
  font-size: 1.8rem;
}
  @media screen and (max-width: 999px) {
    .hb_btn li {
      margin-bottom: 2.66vw;
    }
    .hb_btn li a {
      min-height: 21.33vw;
    }
    .hb_btn li a b {
      font-size: 5.33vw;
    }
    .hb_btn li a span {
      font-size: 4vw;
    }
  }

/*----------------------------------------------------
  コンテンツ
--------------------------------------------------- */
#mainVisual {
  position: relative;
  background: #E3F7E2;
}
.mv_copy {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  padding: 0 30px;
}
.mv_copy01 {
  opacity: 0;
  position: relative;
  bottom: -20px;
  transition: all 1.2s ease-in-out 1s;
  display: block;
  margin-bottom: clamp(0px, 6vw, 100px);
}
.mv_copy02 {
  opacity: 0;
  position: relative;
  bottom: -20px;
  transition: all 1.2s ease-in-out 1.4s;
  display: block;
  margin-bottom: clamp(0px, 4.5vw, 70px);
}
.mv_copy03 {
  opacity: 0;
  position: relative;
  transition: all 1.2s ease-in-out 2.6s;
  display: block;
}
  @media screen and (max-width: 1329px) {
    .mv_copy01 img {
      width: 80vw;
      height: auto;
    }
    .mv_copy02 img {
      width: 74vw;
      height: auto;
    }
    .mv_copy03 img {
      width: 42vw;
      height: auto;
    }
  }
  @media screen and (max-width: 999px) {
    .mv_copy {
      padding: 23.33vw 5vw 0 5vw;
    }
    .mv_copy01 {
      margin-bottom: 8vw;
    }
    .mv_copy02 {
      margin-bottom: 30vw;
    }
    .mv_copy01 img {
      width: 80vw;
      height: auto;
    }
    .mv_copy02 img {
      width: 61.33vw;
      height: auto;
    }
    .mv_copy03 img {
      width: 60.16vw;
      height: auto;
    }
  }

#mainVisual figure {
  opacity: 0;
  transition: all 1s ease-in-out 0s;
}
  @media screen and (max-width: 999px) {
    #mainVisual {
      min-height: 177.33vw;
      transition: all 1s ease-in-out 0.4s;
    }
    #mainVisual figure img {
      width: 100%;
      height: auto;
    }
  }

#page.active #mainVisual figure {
  opacity: 1;
}
#page.active .mv_copy01,
#page.active .mv_copy02,
#page.active .mv_copy03 {
  opacity: 1;
  bottom: 0;
}

#contents section {
  position: relative;
}
.en_ttl {
  position: absolute;
  left: 0;
  top: 30px;
  writing-mode: vertical-rl;
  color: #969696;
  font-size: min(6.8vw,10rem);
  letter-spacing: 0.02em;
  line-height: 0.85;
  height: 100%;
  overflow: hidden;
  font-weight: 500;
}
.en_ttl span {
  position: relative;
  display: inline-block;
}
  @media screen and (max-width: 999px) {
    .en_ttl {
      position: static;
      writing-mode: horizontal-tb;
      font-size: 10.66vw;
      line-height: 1;
      height: auto;
      padding: 0 9.33vw;
      margin-bottom: 5.33vw;
    }
    .en_ttl span {
      display: block;
    }
  }

#about {
  padding: 100px 80px 0 80px;
}
  @media screen and (max-width: 1299px) {
    #about {
      padding-left: 5%;
      padding-right: 0;
    }
  }
  @media screen and (max-width: 999px) {
    #about {
      padding: 16vw 0 10.66vw;
    }
  }

.about_wrap {
  position: relative;
}
.about_img01 {
  max-width: 720px;
  width: 60%;
  height: 400px;
  position: absolute;
  right: 0;
  top: 0;
}
.about_img01 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about_wrap h2 {
  position: relative;
  z-index: 5;
  padding-top: 2%;
  font-size: min(4vw,5rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  min-height: 365px;
}
.about_img02 {
  position: absolute;
  left: 0;
  top: 250px;
  max-width: 310px;
}
.about_img02 img {
  width: 100%;
  height: auto;
}
.about_box {
  position: relative;
  z-index: 5;
}
.about_txt {
  width: 55%;
  max-width: 670px;
  padding: min(85px, 5.5vw) 0 0 5.5%;
}
.about_txt h3 {
  margin-bottom: 35px;
}
.about_txt p {
  font-size: 2rem;
  margin-bottom: 25px;
}
.about_txt p:last-child {
  margin-bottom: 0;
}
.about_txt p small {
  display: block;
  font-size: 1.3rem;
  margin-top: 20px;
}
.about_img03 {
  max-width: 28%;
  min-height: 380px;
}
.about_img03 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
  @media screen and (max-width: 999px) {
    .about_wrap {
      position: relative;
    }
    .about_img01 {
      max-width: 100%;
      width: 100%;
      height: auto;
      position: static;
    }
    .about_img01 img {
      height: auto;
    }
    .about_wrap h2 {
      padding: 5.33vw 0 5vw 0;
      font-size: 6.93vw;
      letter-spacing: 0.08em;
      line-height: 1.4;
      min-height: auto;
    }
    .about_img02 {
      position: relative;
      left: 0;
      top: 0;
      max-width: 48vw;
    }
    .about_txt {
      width: 100%;
      max-width: 100%;
      padding: 46.66vw 0 0 0;
    }
    .about_txt h3 {
      margin-bottom: 5vw;
    }
    .about_txt h3 img {
      width: 53.47vw;
      height: auto;
    }
    .about_txt p {
      font-size: 4.26vw;
      margin-bottom: 3.46vw;
    }
    .about_txt p small {
      display: block;
      font-size: 3.46vw;
      margin-top: 2vw;
    }
    .about_img03 {
      position: absolute;
      right: 0;
      top: -22vw;
      z-index: 5;
      width: 48vw;
      max-width: 48vw;
      min-height: auto;
    }
    .about_img03 img {
      height: auto;
    }
  }

#point {
  position: relative;
  background: url("../img/point_bg.jpg") center bottom no-repeat;
  background-size: 100% auto;
  padding: 100px 0;
}
  @media screen and (max-width: 1600px) {
    #point {
      background-size: 1600px auto;
    }
  }

#point::before {
  content: "";
  position: absolute;
  top: 100px;
  bottom: 100px;
  left: 50%;
  width: calc(100% - 40px);
  max-width: 1400px;
  transform: translateX(-50%);
  background: rgba(0, 131, 89, 1);
  mix-blend-mode: multiply;
  pointer-events: none;
}
  @media screen and (max-width: 999px) {
    #point {
      background: url("../img/point_bg_sp.jpg") center bottom no-repeat;
      background-size: 100% auto;
      padding: 13.33vw 0;
    }
    #point::before {
      top: 13.33vw;
      bottom: 13.33vw;
      width: calc(100% - 18.66vw);
      max-width: 100%;
    }
  }

.point_wrap {
  position: relative;
  padding: 120px 0 80px;
}
.point_ttl {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.point_ttl h2 {
  position: absolute;
  top: -25px;
  left: 180px;
}
.point_ttl h2 span {
  display: inline-block;
  padding-left: 80px;
}
.point_ttl_fig {
  position: absolute;
  left: -45px;
  top: -130px;
}
.point_inner {
  padding: 0 20px;
}
.point_inner h3 {
  text-align: center;
  color: #fff;
  font-size: 3rem;
  margin-bottom: 45px;
  font-weight: 400;
}
.point_list {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
.point_box h4 {
  text-align: center;
  margin-bottom: 20px;
}
.point_box figure img {
  width: 100%;
  height: auto;
}
.point_box dl {
  color: #fff;
}
.point_box dt {
  text-align: center;
  font-size: 2.3rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin: 22px 0 12px;
}
.point_copy {
  text-align: center;
  margin-top: 50px;
}
.point_copy p {
  font-size: 3rem;
  letter-spacing: 0.1em;
  color: #fff;
}
  @media screen and (max-width: 999px) {
    .point_wrap {
      padding: 18.66vw 0 6vw;
    }
    .point_ttl {
      left: 3.33vw;
    }
    .point_ttl h2 {
      top: -3.33vw;
      left: 12vw;
    }
    .point_ttl h2 span {
      padding-left: 12vw;
    }
    .point_ttl_fig {
      left: -9vw;
      top: -15.33vw;
    }
    .point_ttl_fig img {
      width: 30vw;
      height: auto;
    }
    .point_inner {
      padding: 0 4.8vw;
    }
    .point_inner h3 {
      font-size: 4.26vw;
      line-height: 1.75;
      margin-bottom: 6.66vw;
    }
    .point_list {
      display: block;
      max-width: 100%;
    }
    .point_box {
      margin-bottom: 6.66vw;
    }
    .point_box h4 {
      margin-bottom: 2.66vw;
    }
    .point_box h4 img {
      width: auto;
      height: 7.46vw;
    }
    .point_box dt {
      font-size: 4.26vw;
      margin: 4.6vw 0 3vw;
    }
    .point_copy {
      margin-top: 10.66vw;
    }
    .point_copy p {
      font-size: 4.26vw;
    }
  }

.point_copy h5 {
  color: #fff;
  font-size: 2.3rem;
  font-weight: 600;
  padding: 18px 0 12px;
}
.point_copy_box {
  max-width: 890px;
  margin: 0 auto;
  color: #fff;
}
.point_copy_box dl {
  width: 100%;
  border: solid 1px #fff;
  border-bottom: none;
  text-align: left;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.6;
  padding: 20px min(35px, 2.2vw);
}
.point_copy_box dl:last-child {
  border-bottom: solid 1px #fff;
}
.point_copy_box dt {
  width: 190px;
  font-size: 2rem;
  padding-left: 20px;
  text-indent: -20px;
  line-height: 1.3;
}
.point_copy_box dd {
  width: calc(100% - 180px);
}
  @media screen and (max-width: 999px) {
    .point_copy h5 {
      font-size: 4.27vw;
      padding: 4vw 0 3.2vw;
    }
    .point_copy_box {
      max-width: 100%;
    }
    .point_copy_box dl {
      display: block;
      padding: 4vw;
    }
    .point_copy_box dt {
      width: 100%;
      font-size: 4.27vw;
      margin-bottom: 1.76vw;
      padding-left: 0;
      text-indent: 0;
    }
    .point_copy_box dt br {
      display: none;
    }
    .point_copy_box dd {
      width: 100%;
      font-size: 3.74vw;
    }
  }

.use_analysis {
  background: linear-gradient(90deg, #2d2d2d 0%, #575757 50%, #2d2d2d 100%);
}
.product_outer {
  position: relative;
  padding: 100px 0;
}
.product_main {
  margin-bottom: 45px;
}
.product_main_box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
  @media screen and (max-width: 1369px) {
    .product_main_box {
      padding-left: 8%;
    }
  }
  @media screen and (max-width: 999px) {
    .use_analysis {
      padding-top: 12vw;
    }
    .product_outer {
      padding: 5vw 0 10.66vw;
    }
    .product_main {
      margin-bottom: 5.33vw;
    }
    .product_main_box {
      display: block;
      padding-left: 0;
    }
  }

.product_main_box h2 {
  position: absolute;
  left: 100px;
  top: 70px;
  z-index: 10;
}
.product_main_box figure {
  max-width: 1200px;
}
  @media screen and (max-width: 1369px) {
    .product_main_box h2 {
      left: 5%;
    }
  }
  @media screen and (max-width: 999px) {
    .product_main_box h2 {
      left: 0;
      top: -2.33vw;
    }
    .product_main_box figure {
      position: relative;
      right: -9.33vw;
      max-width: 100%;
    }
    .product_main_box > p {
      margin-top: 6.66vw;
      font-size: 4.26vw;
      color: #fff;
    }
  }

.product_main_txt {
  position: relative;
  width: 100%;
  max-width: 1200px;
  padding-right: 250px;
  margin-top: 45px;
  color: #fff;
}
.product_main_txt p {
  max-width: 710px;
}
.analysis_main_fig {
  position: absolute;
  right: 3%;
  bottom: -115px;
}
  @media screen and (max-width: 1119px) {
    .analysis_main_fig {
      position: absolute;
      right: 0;
      bottom: -65px;
      width: 210px;
    }
  }
  @media screen and (max-width: 999px) {
    .product_main_txt {
      max-width: 100%;
      padding-right: 0;
      margin-top: 6.66vw;
    }
    .product_main_txt p {
      max-width: 100%;
    }
    .analysis_main_fig {
      width: auto;
      right: -1.33vw;
      bottom: -38.8vw;
    }
    .analysis_main_fig img {
      width: 24vw;
    }
  }

.product_wrap {
  display: flex;
  justify-content: flex-end;
}
  @media screen and (max-width: 1160px) {
    .product_wrap {
      padding-left: 5%;
    }
  }
  @media screen and (max-width: 999px) {
    .product_wrap {
      padding-left: 0;
    }
  }

.product_cont {
  position: relative;
  width: 100%;
  max-width: 1200px;
  padding-left: 100px;
}
.product_sub_ttl {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border-right: solid 1px #fff;
  writing-mode: vertical-rl;
  color: #fff;
  font-size: 3rem;
  padding-right: 35px;
  line-height: 1;
}
.product_box {
  position: relative;
  margin-bottom: 30px;
}
.product_box:last-child {
  margin-bottom: 0;
}
.product_box figure {
   width: 380px;
}
.product_box figure img {
  width: 100%;
  height: auto;
}
.product_txt {
  position: relative;
  padding-left: 58px;
  width: calc(100% - 405px);
  color: #fff;
}
.product_num {
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  text-align: center;
}
.product_txt dt {
  position: relative;
  top: -8px;
  line-height: 1.5;
  font-size: 2.3rem;
  margin-bottom: 5px;
  font-weight: 600;
}
.product_txt dd {
  max-width: 490px;
}
.product_txt dd h4 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.product_txt dd p {
  line-height: 1.7;
}
.use04_data {
  position: absolute;
  left: 320px;
  bottom: -35px;
  z-index: 5;
}
.use04_data img {
}
.product_note {
  position: absolute;
  left: 58px;
  bottom: 0;
}
  @media screen and (max-width: 999px) {
    .product_cont {
      max-width: 100%;
      padding-left: 0;
    }
    .product_sub_ttl {
      position: static;
      height: auto;
      border-right: none;
      writing-mode: horizontal-tb;
      font-size: 5.33vw;
      padding-right: 0;
      margin-bottom: 8vw;
    }
    #swing_analysis .product_sub_ttl {
      line-height: 1.5;
      margin-bottom: 12vw;
      margin-top: 5.33vw;
    }
    .product_box {
      margin-bottom: 6.66vw;
    }
    .product_box figure {
       width: 100%;
       margin-bottom: 5vw;
    }
    .product_box figure img {
      width: 100%;
      height: auto;
    }
    .product_txt {
      padding-left: 9.33vw;
      width: 100%;
    }
    .product_num {
      width: 7vw;
    }
    .product_num img {
      width: auto;
      height: 6.13vw;
    }
    .product_txt dt {
      top: -0.8vw;
      font-size: 4.26vw;
      margin-bottom: 1.13vw;
      letter-spacing: 0.1em;
    }
    .product_txt dd {
      max-width: 100%;
    }
    .product_txt dd h4 {
      font-size: 3.73vw;
      margin-bottom: 2vw;
    }
    .product_txt dd p {
      line-height: 1.75;
    }
    .use04_data {
      margin-top: -1.66vw;
      margin-bottom: 5.33vw;
      position: static;
    }
    .use04_data img {
      width: 100%;
      height: auto;
    }
    .product_note {
      position: static;
      left: 9.33vw;
      margin-top: 4.26vw;
    }
    .product_note p br.pc_none {
      display: block!important;
    }
  }

#product_use {
  border-bottom: solid 1px #fff;
}
#use04 {
  margin-bottom: 65px;
}
#analysis04 .product_txt {
  padding-bottom: 50px;
}
#analysis04 .product_txt br.pc_none {
  display: none;
}
.product_analysis_bg {
  position: absolute;
  left: 0;
  bottom: 0;
}
  @media screen and (max-width: 1299px) {
    .product_analysis_bg {
      max-width: 620px;
    }
  }
  @media screen and (max-width: 1099px) {
    #analysis04 .product_txt dd br.sp_none {
      display: none;
    }
  }
  @media screen and (max-width: 999px) {
    #product_analysis {
      padding-top: 15.33vw;
      padding-bottom: 90vw;
    }
    #use04 {
      margin-bottom: 6.66vw;
    }
    #analysis04 .product_txt {
      padding-bottom: 0;
    }
    .product_analysis_bg {
      max-width: 100%;
      width: 100%;
      position: absolute;
      left: 0;
      bottom: 0;
    }
    .product_analysis_bg img {
      width: 100%;
      height: auto;
    }
  }

#subsc {
  background: url("../img/subsc_bg.png") center bottom #E3F7E2 no-repeat;
  background-size: 100% auto;
  padding: 100px 0;
}
#subsc .en_ttl {
  color: #7FC1AC;
}
  @media screen and (max-width: 1600px) {
    #subsc {
      background-size: 1600px auto;
    }
  }
  @media screen and (max-width: 1369px) {
    #subsc {
      padding-left: 5%;
    }
  }
  @media screen and (max-width: 999px) {
    #subsc {
      background: url("../img/subsc_bg_sp.png") center bottom #E3F7E2 no-repeat;
      background-size: 100% auto;
      padding: 12vw 0 13.33vw 0;
    }
  }

.subsc_ttl {
  text-align: center;
  margin-bottom: 40px;
}
.subsc_ttl span {
  display: block;
}
.subsc_ttl small {
  display: block;
  font-size: 3rem;
  margin-top: 15px;
}
  @media screen and (max-width: 999px) {
    .subsc_ttl {
      margin-bottom: 4.26vw;
      padding-top: 1.33vw;
    }
    .subsc_ttl span img {
      width: 53.47vw;
      height: auto;
    }
    .subsc_ttl small {
      font-size: 5.33vw;
      margin-top: 3vw;
    }
  }

.subsc_wrap {
  background: #fff;
  padding: 70px 30px;
}
.subsc_menu {
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 25px;
}
.subsc_menu:last-child {
  padding-bottom: 0;
}
.subsc_menu h3 {
  font-size: 2.2rem;
  padding: 8px 3%;
  margin-bottom: 5px;
  color: #fff;
  background: #0061A2;
}
  @media screen and (max-width: 999px) {
    .subsc_wrap {
      padding: 8vw 5.33vw;
    }
    .subsc_menu {
      max-width: 100%;
      padding-bottom: 4vw;
    }
    .subsc_menu h3 {
      font-size: 4.26vw;
      padding: 2vw 3vw;
      margin-bottom: 1.33vw;
    }
  }

.subsc_box {
  margin-bottom: 5px;
}
.subsc_head_ttl {
  position: relative;
  background-color: #4088B9;
  color: #fff;
  padding: 10px 3%;
  min-height: 90px;
  cursor: pointer;
}
.subsc_head_ttl::after {
  position: absolute;
  right: 4.5%;
  top: 35px;
  z-index: 5;
  content: "";
  background: url("../img/arrow01a.svg") center center no-repeat;
  background-size: 24px auto;
  width: 24px;
  height: 24px;
  transition: all 0.3s ease-in-out 0s;
}
.subsc_box.is-active .subsc_head_ttl::after {
  transform: rotate(180deg);
}
.subsc_head_plan {
  width: 390px;
  align-items: center;
}
.subsc_head_plan dt {
  margin-right: 15px;
}
.subsc_head_plan dt span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  font-size: 3rem;
  font-weight: 500;
  color: #0061a2;
  background: #fff;
}
.subsc_head_plan dd {
  font-weight: 600;
  line-height: 1.5;
}
.subsc_head_plan dd b {
  font-size: 2rem;
}
.subsc_head_plan dd small {
  font-size: 1.7rem;
}
  @media screen and (max-width: 999px) {
    .subsc_box {
      margin-bottom: 1.33vw;
    }
    .subsc_head_ttl {
      padding: 2.46vw;
      min-height: 20.26vw;
    }
    .subsc_head_ttl::after {
      top: auto;
      right: 2vw;
      bottom: 2vw;
      background-size: 4.26vw auto;
      width: 4.26vw;
      height: 4.26vw;
    }
    .subsc_head_plan {
      width: 100%;
    }
    .subsc_head_plan dt {
      margin-right: 2vw;
    }
    .subsc_head_plan dt span {
      width: 6.4vw;
      height: 6.4vw;
      font-size: 5.33vw;
    }
    .subsc_head_plan dd {
      line-height: 1.2;
    }
    .subsc_head_plan dd b {
      font-size: 4.26vw;
    }
    #subsc04 .subsc_head_plan dd b {
      white-space: nowrap;
    }
    .subsc_head_plan dd small {
      font-size: 3.46vw;
    }
  }

.subsc_head_price {
  align-items: center;
}
.subsc_head_price dl {
  align-items: flex-end;
  font-weight: 600;
}
.subsc_head_price dt {
  font-size: 3rem;
  margin-right: 5px;
  line-height: 1.3;
  letter-spacing: 0;
}
.subsc_head_price dd {
  letter-spacing: 0.04em;
}
.subsc_head_free {
  margin-left: 30px;
}
.subsc_head_free span {
  display: inline-block;
  border: solid 1px #fff;
  font-size: 2rem;
  font-weight: 500;
  padding: 0 20px;
}
  @media screen and (max-width: 999px) {
    .subsc_head_price {
      padding-left: 8.4vw;
    }
    .subsc_head_price dt {
      font-size: 7.2vw;
      margin-right: 0.33vw;
    }
    .subsc_head_price dd {
      font-size: 3.46vw;
    }
    .subsc_head_free {
      margin-left: 4vw;
    }
    .subsc_head_free span {
      font-size: 3.46vw;
      padding: 0.13vw 2vw;
    }
  }

.subsc_head_price dt small {
  font-size: 1.5rem;
}
  @media screen and (max-width: 1099px) {
    #subsc04 .subsc_head_price {
      display: block;
    }
  }
  @media screen and (max-width: 999px) {
    .subsc_head_price dt small {
      font-size: 3.46vw;
    }
  }

.subsc_body {
  display: none;
  background-color: #CCDFEC;
}
.subsc_body_box {
  padding: 30px 3%;
}
.subsc_body_txt {
  width: calc(100% - 220px);
  max-width: 700px;
  padding-right: 30px;
  line-height: 1.7;
}
.subsc_body_txt > * {
  margin-bottom: 10px;
}
.subsc_body_txt > *:last-child {
  margin-bottom: 0;
}
.subsc_body_txt dt,
.subsc_body_txt li {
  position: relative;
  padding-left: 20px;
}
.subsc_body_txt dt::before,
.subsc_body_txt li::before {
  position: absolute;
  left: 0;
  top: 6px;
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #969696;
}
.subsc_body_txt li {
  margin-bottom: 7px;
}
.subsc_body_txt li:last-child {
  margin-bottom: 0;
}
  @media screen and (max-width: 999px) {
    .subsc_body_box {
      padding: 4.26vw 5.33vw 5.33vw 5.33vw;
    }
    .subsc_body_txt {
      width: 100%;
      max-width: 100%;
      padding-right: 0;
      line-height: 1.6;
      font-size: 3.46vw;
    }
    .subsc_body_txt > * {
      margin-bottom: 2.66vw;
    }
    .subsc_body_txt dt,
    .subsc_body_txt li {
      padding-left: 4.26vw;
    }
    .subsc_body_txt dt::before,
    .subsc_body_txt li::before {
      top: 1.13vw;
      width: 3.33vw;
      height: 3.33vw;
    }
    .subsc_body_txt li {
      margin-bottom: 1.33vw;
    }
  }

.subsc_body_img {
  width: 220px;
}
.subsc_body_img p {
  font-size: 1.3rem;
  line-height: 1.5;
  margin-top: 10px;
}
  @media screen and (max-width: 999px) {
    .subsc_body_img {
      width: 100%;
      margin-top: 6.66vw;
    }
    .subsc_body_img figure img {
      width: 100%;
      height: auto;
    }
    .subsc_body_img p {
      font-size: 3.46vw;
      margin-top: 2.66vw;
    }
  }

#subsc02 h3 {
  background: #00905C;
}
#subsc02 .subsc_head_ttl {
  background-color: #40AC85;
}
#subsc02 .subsc_head_plan dt span {
  color: #00905c;
}
#subsc02 .subsc_body {
  background-color: #CCE9DE;
}
#subsc03 h3 {
  background: #694188;
}
#subsc03 .subsc_head_ttl {
  background-color: #8F70A6;
}
#subsc03 .subsc_head_plan dt span {
  color: #694188;
}
#subsc03 .subsc_body {
  background-color: #E1D9E7;
}
#subsc04 h3 {
  background: #006E7B;
}
#subsc04 .subsc_head_ttl {
  background-color: #149EA2;
}
#subsc04 .subsc_head_plan dt span {
  color: #006e7b;
}
#subsc04 .subsc_body {
  background-color: #D0ECEC;
}

#purchase {
  background: url("../img/purchase_bg.jpg") center top no-repeat;
  background-size: cover;
  padding: 100px 0;
  min-height: 615px;
}
#purchase .en_ttl {
  color: #7FC1AC;
}
  @media screen and (max-width: 1600px) {
    #purchase {
      background-size: 1600px auto;;
    }
  }
  @media screen and (max-width: 1369px) {
    #purchase {
      padding-left: 5%;
    }
  }
  @media screen and (max-width: 999px) {
    #purchase {
      background: url("../img/purchase_bg_sp.jpg") center top no-repeat;
      background-size: cover;
      padding: 12vw 0 13.33vw 0;
      min-height: auto;
    }
  }

.purchase_ttl {
  font-size: 4rem;
  margin-bottom: 40px;
  letter-spacing: 0.12em;
}
.purchase_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.purchase_box {
  position: relative;
  background: rgba(0, 90, 50, 0.7);
  padding: 50px 30px 80px;
  overflow: hidden;
}
.purchase_box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 95, 55, 0.38);
  pointer-events: none;
}
.purchase_box dl {
  position: relative;
  z-index: 5;
}
.purchase_box dt {
  color: #fff;
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 30px;
  line-height: 1.5;
  font-weight: 600;
}
.purchase_box dd {
  text-align: center;
}
.purchase_box dd figure a {
  display: block;
}
.purchase_box dd li {
  flex-shrink: 0;
  margin: 0 9px;
}
.purchase_box dd ul li a {
  color: #fff;
  text-decoration: none;
}
.purchase_box dd ul li span {
  display: block;
}
.purchase_box dd ul li small {
  display: block;
  margin-top: 10px;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.1em;
}
  @media screen and (max-width: 1169px) {
    .purchase_box dd figure img {
      width: 350px;
      height: auto;
    }
    .purchase_box dd ul li img {
      width: auto;
      height: 58px;
    }
  }
  @media screen and (max-width: 999px) {
    #purchase .en_ttl {
      margin-bottom: 2.66vw;
    }
    .purchase_ttl {
      font-size: 5.33vw;
      margin-bottom: 6.13vw;
    }
    .purchase_list {
      display: block;
    }
    .purchase_box {
      padding: 6.13vw 5.33vw 7.46vw 5.33vw;
      margin-bottom: 5vw;
    }
    .purchase_box:last-child {
      margin-bottom: 0;
    }
    .purchase_box dt {
      font-size: 4.8vw;
      margin-bottom: 4vw;
      line-height: 1.6;
    }
    .purchase_box dd li {
      margin: 0 0 6.66vw;
    }
    .purchase_box dd li:last-child {
      margin-bottom: 0;
    }
    .purchase_box dd ul li small {
      margin-top: 2vw;
      font-size: 4.8vw;
    }
    .purchase_box dd figure img {
      width: 64vw;
    }
    .purchase_box dd ul li img {
      height: 18.66vw;
    }
  }

