@charset "UTF-8";
/* 基本設定 */
/*============================================
	― 変数設定
=============================================*/
/*============================================
	― PC表示
=============================================*/
.pc-disblock {
  display: block;
}

.pc-disline {
  display: inline;
}

.pc-dislineblock {
  display: inline-block;
}

.pc-none {
  display: none;
}

.sp-disblock {
  display: none;
}

.sp-disline {
  display: none;
}

.sp-dislineblock {
  display: none;
}

.tb-dispblock {
  display: none;
}

/*============================================
	― タブレット表示切り替え
=============================================*/
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .tb-dispblock {
    display: block;
  }
}
/*============================================
	― スマホ表示切り替え
=============================================*/
@media screen and (max-width: 769px) {
  .pc-disblock {
    display: none;
  }
  .pc-disline {
    display: none;
  }
  .pc-dislineblock {
    display: none;
  }
  .sp-disblock {
    display: block;
  }
  .sp-disline {
    display: inline;
  }
  .sp-dislineblock {
    display: inline-block;
  }
  .sp-none {
    display: none;
  }
}
body {
  font-family: source-han-sans-japanese, sans-serif;
}

.nitalago-ruika {
  font-family: nitalago-ruika, sans-serif;
  font-weight: 100;
  font-style: normal;
}

.zen-maru-gothic {
  font-family: zen-maru-gothic, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.futura-pt {
  font-family: futura-pt, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.futura-pt-bold {
  font-family: futura-pt-bold, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.Bebas-Neue {
  font-family: "Bebas Neue", cursive;
}

@media screen and (max-width: 767px) {
  .br_pc {
    display: none;
  }
}

.br_sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .br_sp {
    display: block;
  }
}

.less_than_pc {
  display: none;
}
@media screen and (max-width: 1279px) {
  .less_than_pc {
    display: block;
  }
}

.bg_color {
  background: linear-gradient(90deg, #fcffe9 0%, #fff2c3 100%);
}

/* modules */
/* 基本設定 */
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 FULLSCREENMENU 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
.fullscreenmenu .menu,
.fullscreenmenu .menu span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}
.fullscreenmenu .menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  z-index: 10000000;
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #f29600;
  cursor: pointer;
}
.fullscreenmenu .menu:after {
  content: "MENU";
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%, 0);
  font-weight: bold;
  color: #fff;
  transition: all 0.4s;
}
.fullscreenmenu .menu span {
  position: absolute;
  left: 50%;
  width: 70%;
  height: 2px;
  background-color: #ffffff;
  z-index: 10;
  transform: translate(-50%, 0);
}
.fullscreenmenu .menu span:nth-of-type(1) {
  top: 20px;
}
.fullscreenmenu .menu span:nth-of-type(2) {
  top: 30px;
}
.fullscreenmenu .menu span:nth-of-type(3) {
  top: 40px;
}
.fullscreenmenu .menu.active span:nth-of-type(1) {
  transform: translate(-50%, 10px) rotate(45deg);
}
.fullscreenmenu .menu.active span:nth-of-type(2) {
  opacity: 0;
}
.fullscreenmenu .menu.active span:nth-of-type(3) {
  transform: translate(-50%, -10px) rotate(-45deg);
}
.fullscreenmenu .menu.active:after {
  content: "CLOSE";
}
.fullscreenmenu #nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100000;
  width: 100%;
  height: 100vh;
  opacity: 0;
  background: rgba(236, 126, 36, 0.9);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  overflow-y: scroll;
}
.fullscreenmenu #nav #nav-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
}
.fullscreenmenu #nav #nav-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  max-width: 1280px;
  margin: 0 auto 0;
  list-style-type: none;
  background: #fff;
  padding: 3% 3% 3% 3%;
}
.fullscreenmenu #nav #nav-wrapper ul li {
  width: 48.5%;
  margin: 20px 3% 0 0;
  border-bottom: solid 1px #efd07b;
}
.fullscreenmenu #nav #nav-wrapper ul li a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0 10px 0;
}
.fullscreenmenu #nav #nav-wrapper ul li a .icon {
  line-height: 0;
  margin: 0 10px 0 0;
  width: 50px;
}
.fullscreenmenu #nav #nav-wrapper ul li a .icon img {
  width: 100%;
  height: auto;
}
.fullscreenmenu #nav #nav-wrapper ul li a .catch {
  font-family: nitalago-ruika, sans-serif;
  font-weight: 100;
  font-style: normal;
  display: inline-block;
  background: linear-gradient(90deg, #f24d00, #fab300);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
  font-size: 32px;
}
.fullscreenmenu #nav #nav-wrapper ul li:nth-child(2n) {
  margin: 20px 0 0 0;
}
.fullscreenmenu #nav.active {
  right: 0;
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}
.fullscreenmenu #nav ul {
  margin: 20px 0;
  padding: 20px 0;
}
.fullscreenmenu #nav ul li {
  list-style-type: none;
}
.fullscreenmenu #nav ul li a {
  padding: 10px 0 10px 0;
  transition: all 0.2s ease-in-out;
  text-align: center;
  text-decoration: none;
  color: #333;
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .fullscreenmenu #nav #nav-wrapper ul {
    max-width: 90%;
    padding: 40px 40px 60px 40px;
    display: block;
  }
  .fullscreenmenu #nav #nav-wrapper ul li {
    width: 100%;
    margin: 20px 3% 0 0;
  }
  .fullscreenmenu #nav #nav-wrapper ul li a {
    padding: 10px 0 10px 0;
  }
  .fullscreenmenu #nav #nav-wrapper ul li a .icon {
    line-height: 0;
    margin: 0 10px 0 0;
    width: 5vw;
  }
  .fullscreenmenu #nav #nav-wrapper ul li a .icon img {
    width: 100%;
    height: auto;
  }
  .fullscreenmenu #nav #nav-wrapper ul li a .catch {
    letter-spacing: 1px;
    font-size: 2.5vw;
  }
  .fullscreenmenu #nav #nav-wrapper ul li:nth-child(2n) {
    margin: 20px 0 0 0;
  }
} /* 1024px～1280px responsive-close



/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .fullscreenmenu.sp-disblock {
    display: block;
  }
  .fullscreenmenu #nav #nav-wrapper ul {
    max-width: 90%;
    padding: 40px 40px 60px 40px;
    display: block;
  }
  .fullscreenmenu #nav #nav-wrapper ul li {
    width: 100%;
    margin: 20px 3% 0 0;
  }
  .fullscreenmenu #nav #nav-wrapper ul li a {
    padding: 10px 0 10px 0;
  }
  .fullscreenmenu #nav #nav-wrapper ul li a .icon {
    line-height: 0;
    margin: 0 10px 0 0;
    width: 5vw;
  }
  .fullscreenmenu #nav #nav-wrapper ul li a .icon img {
    width: 100%;
    height: auto;
  }
  .fullscreenmenu #nav #nav-wrapper ul li a .catch {
    letter-spacing: 1px;
    font-size: 2.5vw;
  }
  .fullscreenmenu #nav #nav-wrapper ul li:nth-child(2n) {
    margin: 20px 0 0 0;
  }
} /* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .fullscreenmenu .menu {
    width: 75px;
    height: 75px;
  }
  .fullscreenmenu .menu:after {
    content: "MENU";
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translate(-50%, 0);
    font-weight: bold;
    color: #fff;
    transition: all 0.4s;
  }
  .fullscreenmenu .menu span {
    position: absolute;
    left: 50%;
    width: 70%;
    height: 2px;
    background-color: #ffffff;
    z-index: 10;
    transform: translate(-50%, 0);
  }
  .fullscreenmenu .menu span:nth-of-type(1) {
    top: 16px;
  }
  .fullscreenmenu .menu span:nth-of-type(2) {
    top: 26px;
  }
  .fullscreenmenu .menu span:nth-of-type(3) {
    top: 36px;
  }
  .fullscreenmenu #nav #nav-wrapper ul {
    max-width: 92%;
    padding: 10px 15px 30px 15px;
    display: block;
  }
  .fullscreenmenu #nav #nav-wrapper ul li {
    width: 100%;
    margin: 15px 0 0 0;
  }
  .fullscreenmenu #nav #nav-wrapper ul li a {
    padding: 10px 0 10px 0;
  }
  .fullscreenmenu #nav #nav-wrapper ul li a .icon {
    line-height: 0;
    margin: 0 5px 0 0;
    width: 7vw;
  }
  .fullscreenmenu #nav #nav-wrapper ul li a .icon img {
    width: 100%;
    height: auto;
  }
  .fullscreenmenu #nav #nav-wrapper ul li a .catch {
    letter-spacing: 1px;
    font-size: 5.25vw;
  }
  .fullscreenmenu #nav #nav-wrapper ul li:nth-child(2n) {
    margin: 15px 0 0 0;
  }
} /* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □   

◆	Stylesheet: さらに刻んで320pxまでのモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
/* 320px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 GNAV 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
.gnav .wrapper {
  background: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.gnav .wrapper .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1920px;
  margin: 0 auto 0;
  padding: 20px 3% 20px 3%;
}
.gnav .wrapper .inner .left {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}
.gnav .wrapper .inner .left .logo {
  line-height: 0;
  width: 150px;
}
.gnav .wrapper .inner .left .logo img {
  width: 100%;
  height: auto;
}
.gnav .wrapper .inner .left h1 {
  margin: 0 0 0 20px;
  color: #f29600;
  font-size: 20px;
}
.gnav .wrapper .inner .left h1 span {
  color: #e95513;
}
.gnav .wrapper .inner .right {
  margin: 0 100px 0 0;
}
.gnav .wrapper .inner .right .button a {
  text-decoration: none;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #f35c19 0%, #ffd52e 100%);
  border: solid 2px #f38a1a;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px, 0 0 0 2px #fff inset;
  padding: 10px 40px 10px 40px;
}
.gnav .wrapper .inner .right .button a .arrow {
  line-height: 0;
  width: 30px;
  margin: 0 5px 0 0;
}
.gnav .wrapper .inner .right .button a .arrow img {
  width: 100%;
  height: auto;
}
.gnav .wrapper .inner .right .button a .catch {
  font-family: nitalago-ruika, sans-serif;
  font-weight: 100;
  font-style: normal;
  color: #fff;
  font-size: 25px;
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .gnav .wrapper .inner {
    max-width: 1920px;
    margin: 0 auto 0;
    padding: 20px 3% 20px 3%;
  }
  .gnav .wrapper .inner .left {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
  }
  .gnav .wrapper .inner .left .logo {
    line-height: 0;
    width: 13.5vw;
  }
  .gnav .wrapper .inner .left .logo img {
    width: 100%;
    height: auto;
  }
  .gnav .wrapper .inner .left h1 {
    margin: 0 0 0 15px;
    font-size: 1.75vw;
  }
  .gnav .wrapper .inner .right {
    margin: 0 80px 0 0;
  }
  .gnav .wrapper .inner .right .button a {
    padding: 10px 25px 10px 25px;
  }
  .gnav .wrapper .inner .right .button a .arrow {
    line-height: 0;
    width: 30px;
    margin: 0 5px 0 0;
  }
  .gnav .wrapper .inner .right .button a .arrow img {
    width: 100%;
    height: auto;
  }
  .gnav .wrapper .inner .right .button a .catch {
    font-size: 2vw;
  }
} /* 1024px～1280px responsive-close



/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .gnav .wrapper .inner {
    max-width: 1920px;
    margin: 0 auto 0;
    padding: 20px 3% 20px 3%;
  }
  .gnav .wrapper .inner .left {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
  }
  .gnav .wrapper .inner .left .logo {
    line-height: 0;
    width: 16vw;
  }
  .gnav .wrapper .inner .left .logo img {
    width: 100%;
    height: auto;
  }
  .gnav .wrapper .inner .left h1 {
    margin: 0 0 0 10px;
    font-size: 1.75vw;
  }
  .gnav .wrapper .inner .right {
    margin: 0 80px 0 0;
  }
  .gnav .wrapper .inner .right .button a {
    padding: 10px 20px 10px 20px;
  }
  .gnav .wrapper .inner .right .button a .arrow {
    line-height: 0;
    width: 3vw;
    margin: 0 5px 0 0;
  }
  .gnav .wrapper .inner .right .button a .arrow img {
    width: 100%;
    height: auto;
  }
  .gnav .wrapper .inner .right .button a .catch {
    font-size: 2.25vw;
  }
} /* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .gnav .wrapper .inner {
    padding: 0px 3% 6px 3%;
    height: 75px;
  }
  .gnav .wrapper .inner .left {
    display: block;
  }
  .gnav .wrapper .inner .left .logo {
    line-height: 0;
    width: 85px;
    margin: 3px 0 0 0;
  }
  .gnav .wrapper .inner .left .logo img {
    width: 100%;
    height: auto;
  }
  .gnav .wrapper .inner .left h1 {
    margin: 0 0 0 0px;
    font-size: 3vw;
  }
  .gnav .wrapper .inner .right {
    margin: 0 0px 0 0;
    display: none;
  }
} /* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □   

◆	Stylesheet: さらに刻んで320pxまでのモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
/* 320px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/* 基本設定 */
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 FIRST-VIEW01 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
.first-view01 {
  background-color: #fdf8d5;
  position: relative;
  height: 40vw;
}
.first-view01 .wrapper .inner {
  position: relative;
  margin: 0 auto 0;
  padding: 0 0 50px 0;
}
.first-view01 .wrapper .inner .text {
  position: relative;
  padding: 12% 0 0 4%;
  z-index: 2;
}
.first-view01 .wrapper .inner .text h2 {
  font-family: "futura-pt", sans-serif;
  margin: 10px 0 0 0;
}
.first-view01 .wrapper .inner .text h2 .cover {
  display: inline-flex;
  align-items: center;
  background: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 10px 20px 10px 20px;
}
.first-view01 .wrapper .inner .text h2 .cover .icon {
  line-height: 0;
  width: 45px;
}
.first-view01 .wrapper .inner .text h2 .cover .icon img {
  width: 100%;
  height: auto;
}
.first-view01 .wrapper .inner .text h2 .cover .catch {
  font-family: zen-maru-gothic, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #f29600;
  font-size: 35px;
  padding: 0 5px 0 10px;
}
.first-view01 .wrapper .inner .text h2 .cover .catch span {
  color: #f6511e;
}
.first-view01 .wrapper .inner .text h2 .cover .deco {
  line-height: 0;
  width: 30px;
  position: relative;
  top: -4px;
}
.first-view01 .wrapper .inner .text h2 .cover .deco img {
  width: 100%;
  height: auto;
}
.first-view01 .wrapper .inner .text h1 {
  padding: 30px 0 0 0;
}
.first-view01 .wrapper .inner .text h1 .cover {
  margin: 10px 0 0 0;
}
.first-view01 .wrapper .inner .text h1 .cover .line {
  display: inline-block;
  background: linear-gradient(90deg, #f35c19 0%, #ffd52e 100%);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 5px 20px 5px 20px;
  color: #fff;
  font-weight: 900;
}
.first-view01 .wrapper .inner .text h1 .cover .line .small {
  letter-spacing: 3px;
  font-size: 25px;
}
.first-view01 .wrapper .inner .text h1 .cover .line .medium {
  letter-spacing: 3px;
  font-size: 55px;
}
.first-view01 .wrapper .inner .text h1 .cover .line .big {
  letter-spacing: 3px;
  font-size: 70px;
}
.first-view01 .wrapper .inner .text h1 .cover .line .number {
  display: inline-block;
  font-family: futura-pt, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  font-size: 100px;
  transform: skew(-10deg);
}
.first-view01 .wrapper .inner .text h1 .cover .line .bikkuri {
  display: inline-block;
  font-style: normal;
  font-size: 55px;
  transform: skew(-10deg);
  padding: 0 0 0 10px;
}
.first-view01 .wrapper .inner .text h1 .badge {
  width: 150px;
  margin-left: 1%;
}
.first-view01 .wrapper .inner .text h1 .badge img {
  width: 100%;
  display: block;
}
.first-view01 .wrapper .inner .text .block {
  font-family: zen-maru-gothic, sans-serif;
  font-weight: 700;
  font-style: normal;
  background: #f29600;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  margin: 60px 0 0 80px;
  width: 600px;
  padding: 10px 30px 20px 30px;
}
.first-view01 .wrapper .inner .text .block .element {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.first-view01 .wrapper .inner .text .block .element .mark {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  width: 48.5%;
  margin: 10px 3% 0 0;
  padding: 5px 10px 5px 10px;
}
.first-view01 .wrapper .inner .text .block .element .mark .icon {
  line-height: 0;
  width: 30px;
  margin: 0 10px 0 0;
}
.first-view01 .wrapper .inner .text .block .element .mark .icon img {
  width: 100%;
  height: auto;
}
.first-view01 .wrapper .inner .text .block .element .mark .catch {
  color: #f29600;
  letter-spacing: 1px;
  font-size: 18px;
}
.first-view01 .wrapper .inner .text .block .element .mark:nth-child(2n) {
  margin: 10px 0 0 0;
}
.first-view01 .wrapper .inner .text .block .sentence {
  margin: 10px 0 0 0;
}
.first-view01 .wrapper .inner .text .block .sentence p {
  color: #fff;
  line-height: 1.6;
  font-size: 20px;
}
.first-view01 .wrapper .inner .hero {
  width: 100%;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.first-view01 .wrapper .inner .hero .swiper-container {
  overflow: visible !important;
}
.first-view01 .wrapper .inner .hero .swiper-container .swiper-slide {
  position: relative;
}
.first-view01 .wrapper .inner .hero .swiper-container .swiper-slide .icon {
  opacity: 0;
  width: 100%;
  position: absolute;
  z-index: 200;
  text-align: center;
}
.first-view01 .wrapper .inner .hero .swiper-container .swiper-slide .icon .cover {
  display: inline-block;
  font-size: 20px;
  letter-spacing: 2px;
  font-weight: 700;
  padding: 10px 25px 10px 25px;
}
.first-view01 .wrapper .inner .hero .swiper-container .swiper-slide .icon .cover .line {
  line-height: 1.1;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
}
.first-view01 .wrapper .inner .hero .swiper-container .swiper-slide .image {
  line-height: 0;
}
.first-view01 .wrapper .inner .hero .swiper-container .swiper-slide .image img {
  width: 100%;
  height: auto;
  transition: transform 1.9s ease;
}

.FV_banner {
  width: 87vw;
  display: block;
  margin: 30px auto 0;
}

.FV_banner_pc, .FV_banner_sp {
  display: block;
  margin: 0 auto;
}

.FV_banner_sp {
  display: none;
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .first-view01 .logo {
    width: 280px;
    padding: 20px 45px 20px 45px;
  }
  .first-view01 .logo img {
    line-height: 0;
    width: 100%;
    height: auto;
  }
  .first-view01 .wrapper .inner {
    max-width: 100%;
    margin: 0 auto 0;
    padding: 0 0 50px 0;
  }
  .first-view01 .wrapper .inner .text {
    position: relative;
    padding: 9% 0 0 0%;
    z-index: 2;
  }
  .first-view01 .wrapper .inner .text h2 {
    margin: 10px 0 0 0;
  }
  .first-view01 .wrapper .inner .text h2 .cover {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px 10px 20px;
  }
  .first-view01 .wrapper .inner .text h2 .cover .icon {
    line-height: 0;
    width: 3vw;
  }
  .first-view01 .wrapper .inner .text h2 .cover .icon img {
    width: 100%;
    height: auto;
  }
  .first-view01 .wrapper .inner .text h2 .cover .catch {
    font-size: 3vw;
    padding: 0 5px 0 10px;
  }
  .first-view01 .wrapper .inner .text h2 .cover .deco {
    line-height: 0;
    width: 2vw;
    position: relative;
    top: -4px;
  }
  .first-view01 .wrapper .inner .text h2 .cover .deco img {
    width: 100%;
    height: auto;
  }
  .first-view01 .wrapper .inner .text h1 {
    padding: 20px 0 0 0;
  }
  .first-view01 .wrapper .inner .text h1 .cover {
    margin: 10px 0 0 0;
  }
  .first-view01 .wrapper .inner .text h1 .cover .line {
    padding: 5px 20px 5px 20px;
  }
  .first-view01 .wrapper .inner .text h1 .cover .line .small {
    letter-spacing: 3px;
    font-size: 3vw;
  }
  .first-view01 .wrapper .inner .text h1 .cover .line .medium {
    letter-spacing: 3px;
    font-size: 4.5vw;
  }
  .first-view01 .wrapper .inner .text h1 .cover .line .big {
    letter-spacing: 3px;
    font-size: 6vw;
  }
  .first-view01 .wrapper .inner .text h1 .cover .line .number {
    font-size: 10vw;
  }
  .first-view01 .wrapper .inner .text h1 .cover .line .bikkuri {
    font-size: 5.5vw;
    transform: skew(-10deg);
    padding: 0 0 0 10px;
  }
  .first-view01 .wrapper .inner .text .block {
    font-family: zen-maru-gothic, sans-serif;
    font-weight: 700;
    font-style: normal;
    background: #f29600;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    margin: 60px 0 0 80px;
    width: 600px;
    padding: 10px 30px 20px 30px;
  }
  .first-view01 .wrapper .inner .text .block .element {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .first-view01 .wrapper .inner .text .block .element .mark {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    width: 48.5%;
    margin: 10px 3% 0 0;
    padding: 5px 10px 5px 10px;
  }
  .first-view01 .wrapper .inner .text .block .element .mark .icon {
    line-height: 0;
    width: 30px;
    margin: 0 10px 0 0;
  }
  .first-view01 .wrapper .inner .text .block .element .mark .icon img {
    width: 100%;
    height: auto;
  }
  .first-view01 .wrapper .inner .text .block .element .mark .catch {
    color: #f29600;
    letter-spacing: 1px;
    font-size: 18px;
  }
  .first-view01 .wrapper .inner .text .block .element .mark:nth-child(2n) {
    margin: 10px 0 0 0;
  }
  .first-view01 .wrapper .inner .text .block .sentence {
    margin: 10px 0 0 0;
  }
  .first-view01 .wrapper .inner .text .block .sentence p {
    color: #fff;
    line-height: 1.6;
    font-size: 20px;
  }
  .first-view01 .wrapper .inner .hero {
    width: 100%;
  }
  .first-view01 .wrapper .inner .hero .swiper-container .swiper-slide .image img {
    width: 100%;
    height: auto;
    transition: transform 1.9s ease;
  }
} /* 1024px～1280px responsive-close



/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .first-view01 {
    height: 40vw;
  }
  .first-view01 .wrapper .inner {
    max-width: 100%;
    margin: 0 auto 0;
    padding: 0 0 50px 0;
  }
  .first-view01 .wrapper .inner .text {
    position: relative;
    padding: 80px 0 0 0%;
    z-index: 2;
  }
  .first-view01 .wrapper .inner .text h2 {
    margin: 10px 0 0 0;
  }
  .first-view01 .wrapper .inner .text h2 .cover {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px 10px 20px;
  }
  .first-view01 .wrapper .inner .text h2 .cover .icon {
    line-height: 0;
    width: 3.5vw;
  }
  .first-view01 .wrapper .inner .text h2 .cover .icon img {
    width: 100%;
    height: auto;
  }
  .first-view01 .wrapper .inner .text h2 .cover .catch {
    font-size: 3.5vw;
    padding: 0 5px 0 10px;
  }
  .first-view01 .wrapper .inner .text h2 .cover .deco {
    line-height: 0;
    width: 2.5vw;
    position: relative;
    top: -4px;
  }
  .first-view01 .wrapper .inner .text h2 .cover .deco img {
    width: 100%;
    height: auto;
  }
  .first-view01 .wrapper .inner .text h1 {
    padding: 20px 0 0 0;
  }
  .first-view01 .wrapper .inner .text h1 .cover {
    margin: 10px 0 0 0;
  }
  .first-view01 .wrapper .inner .text h1 .cover .line {
    padding: 5px 20px 5px 20px;
  }
  .first-view01 .wrapper .inner .text h1 .cover .line .small {
    letter-spacing: 3px;
    font-size: 3.5vw;
  }
  .first-view01 .wrapper .inner .text h1 .cover .line .medium {
    letter-spacing: 3px;
    font-size: 5vw;
  }
  .first-view01 .wrapper .inner .text h1 .cover .line .big {
    letter-spacing: 3px;
    font-size: 6.5vw;
  }
  .first-view01 .wrapper .inner .text h1 .cover .line .number {
    font-size: 10.5vw;
  }
  .first-view01 .wrapper .inner .text h1 .cover .line .bikkuri {
    font-size: 6vw;
    transform: skew(-10deg);
    padding: 0 0 0 10px;
  }
  .first-view01 .wrapper .inner .text .block {
    font-family: zen-maru-gothic, sans-serif;
    font-weight: 700;
    font-style: normal;
    background: #f29600;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    margin: 60px 0 0 80px;
    width: 600px;
    padding: 10px 30px 20px 30px;
  }
  .first-view01 .wrapper .inner .text .block .element {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .first-view01 .wrapper .inner .text .block .element .mark {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    width: 48.5%;
    margin: 10px 3% 0 0;
    padding: 5px 10px 5px 10px;
  }
  .first-view01 .wrapper .inner .text .block .element .mark .icon {
    line-height: 0;
    width: 30px;
    margin: 0 10px 0 0;
  }
  .first-view01 .wrapper .inner .text .block .element .mark .icon img {
    width: 100%;
    height: auto;
  }
  .first-view01 .wrapper .inner .text .block .element .mark .catch {
    color: #f29600;
    letter-spacing: 1px;
    font-size: 18px;
  }
  .first-view01 .wrapper .inner .text .block .element .mark:nth-child(2n) {
    margin: 10px 0 0 0;
  }
  .first-view01 .wrapper .inner .text .block .sentence {
    margin: 10px 0 0 0;
  }
  .first-view01 .wrapper .inner .text .block .sentence p {
    color: #fff;
    line-height: 1.6;
    font-size: 20px;
  }
  .first-view01 .wrapper .inner .hero {
    width: 100%;
  }
  .first-view01 .wrapper .inner .hero .swiper-container .swiper-slide .image img {
    width: 100%;
    height: auto;
    transition: transform 1.9s ease;
  }
  .first-view01 .wrapper .inner .hero .swiper-container .swiper-slide .image img .pc-disblock {
    display: none;
  }
  .first-view01 .wrapper .inner .hero .swiper-container .swiper-slide .image img .sp-disblock {
    display: block;
  }
} /* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .first-view01 {
    height: 153.4vw;
  }
  .first-view01 .wrapper .inner {
    padding: 0 0 50px 0;
  }
  .first-view01 .wrapper .inner .text {
    position: relative;
    padding: calc(35px - 1%) 0 0 0%;
    z-index: 2;
  }
  .first-view01 .wrapper .inner .text h2 {
    margin: 10px 0 0 0;
  }
  .first-view01 .wrapper .inner .text h2 .cover {
    padding: 5px 10px 5px 10px;
  }
  .first-view01 .wrapper .inner .text h2 .cover .icon {
    line-height: 0;
    width: 4.5vw;
  }
  .first-view01 .wrapper .inner .text h2 .cover .icon img {
    width: 100%;
    height: auto;
  }
  .first-view01 .wrapper .inner .text h2 .cover .catch {
    font-size: 4.25vw;
    padding: 0 5px 0 5px;
  }
  .first-view01 .wrapper .inner .text h2 .cover .deco {
    line-height: 0;
    width: 4vw;
    top: -4px;
  }
  .first-view01 .wrapper .inner .text h2 .cover .deco img {
    width: 100%;
    height: auto;
  }
  .first-view01 .wrapper .inner .text h1 {
    padding: 100px 0 0 0;
  }
  .first-view01 .wrapper .inner .text h1 .cover {
    margin: 10px 0 0 0;
  }
  .first-view01 .wrapper .inner .text h1 .cover .line {
    padding: 5px 10px 5px 10px;
    font-weight: 900;
  }
  .first-view01 .wrapper .inner .text h1 .cover .line .small {
    letter-spacing: 3px;
    font-size: 25px;
  }
  .first-view01 .wrapper .inner .text h1 .cover .line .medium {
    letter-spacing: 3px;
    font-size: 7vw;
  }
  .first-view01 .wrapper .inner .text h1 .cover .line .big {
    letter-spacing: 3px;
    font-size: 7vw;
  }
  .first-view01 .wrapper .inner .text h1 .cover .line .number {
    font-size: 12vw;
  }
  .first-view01 .wrapper .inner .text h1 .cover .line .bikkuri {
    font-size: 5vw;
    padding: 0 0 0 10px;
  }
  .first-view01 .wrapper .inner .text h1 .badge {
    width: 80px;
    margin-left: 3%;
  }
  .first-view01 .wrapper .inner .text .block {
    margin: 60px 0 0 80px;
    width: 600px;
    padding: 10px 30px 20px 30px;
  }
  .first-view01 .wrapper .inner .text .block .element {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .first-view01 .wrapper .inner .text .block .element .mark {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    width: 48.5%;
    margin: 10px 3% 0 0;
    padding: 5px 10px 5px 10px;
  }
  .first-view01 .wrapper .inner .text .block .element .mark .icon {
    line-height: 0;
    width: 30px;
    margin: 0 10px 0 0;
  }
  .first-view01 .wrapper .inner .text .block .element .mark .icon img {
    width: 100%;
    height: auto;
  }
  .first-view01 .wrapper .inner .text .block .element .mark .catch {
    color: #f29600;
    letter-spacing: 1px;
    font-size: 18px;
  }
  .first-view01 .wrapper .inner .text .block .element .mark:nth-child(2n) {
    margin: 10px 0 0 0;
  }
  .first-view01 .wrapper .inner .text .block .sentence {
    margin: 10px 0 0 0;
  }
  .first-view01 .wrapper .inner .text .block .sentence p {
    color: #fff;
    line-height: 1.6;
    font-size: 20px;
  }
  .first-view01 .wrapper .inner .hero {
    width: 100%;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
  }
  .first-view01 .wrapper .inner .hero .swiper-container {
    overflow: visible !important;
  }
  .first-view01 .wrapper .inner .hero .swiper-container .swiper-slide {
    position: relative;
  }
  .first-view01 .wrapper .inner .hero .swiper-container .swiper-slide .icon {
    opacity: 0;
    width: 100%;
    position: absolute;
    z-index: 200;
    text-align: center;
  }
  .first-view01 .wrapper .inner .hero .swiper-container .swiper-slide .icon .cover {
    display: inline-block;
    font-size: 20px;
    letter-spacing: 2px;
    font-weight: 700;
    padding: 10px 25px 10px 25px;
  }
  .first-view01 .wrapper .inner .hero .swiper-container .swiper-slide .icon .cover .line {
    line-height: 1.1;
    font-family: fot-tsukuardgothic-std, sans-serif;
    font-weight: 700;
  }
  .first-view01 .wrapper .inner .hero .swiper-container .swiper-slide .image {
    line-height: 0;
  }
  .first-view01 .wrapper .inner .hero .swiper-container .swiper-slide .image img {
    width: 100%;
    height: auto;
    transition: transform 1.9s ease;
  }
  .FV_banner_pc {
    display: none;
  }
  .FV_banner_sp {
    display: block;
  }
} /* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □   

◆	Stylesheet: さらに刻んで320pxまでのモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (min-width: 1441px) {
  .first-view01 {
    height: 40vw;
  }
}
@media screen and (min-width: 1920px) {
  .first-view01 .wrapper .inner .text {
    padding: 17% 0 0 4%;
  }
}
@media screen and (max-width: 560px) {
  .first-view01 {
    height: 157.5vw;
  }
} /* 320px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/* 基本設定 */
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 FIST-VIEW-TO 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
.first-view-to {
  max-width: 1480px;
  padding: 1px 1.5% 50px 1.5%;
  margin: -30px auto 0;
}
.first-view-to .box-wrapper {
  margin: 0 auto 0px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  position: relative;
  z-index: 20;
}
.first-view-to .box-wrapper:nth-of-type(n + 2) {
  margin-top: 2%;
}
.first-view-to .box-wrapper .box {
  background: #ffffff;
  box-shadow: rgba(255, 248, 190, 0.15) 0px 5px 15px, 5px 5px 0 0 #ffe489;
  border: solid 2px #e95513;
  width: 48%;
  margin: 0 2% 0 0;
  padding: 10px 20px 10px 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}
.first-view-to .box-wrapper .box:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 30px 60px;
  border-color: transparent transparent #ec7e24 transparent;
  right: 0;
  bottom: 0;
}
.first-view-to .box-wrapper .box:nth-of-type(n + 3) {
  margin-top: 2%;
}
.first-view-to .box-wrapper .box .icon {
  width: 90px;
  height: 90px;
  padding: 0 0 0 0;
  margin: 0 15px 0 0;
  position: relative;
  line-height: 0;
}
.first-view-to .box-wrapper .box .icon img {
  width: 100%;
  height: auto;
}
.first-view-to .box-wrapper .box .icon::after {
  content: "";
  position: absolute;
  width: 92%;
  height: 92%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: solid 2px rgb(244, 240, 206);
}
.first-view-to .box-wrapper .box .text {
  font-family: zen-maru-gothic, sans-serif;
  font-weight: 700;
  font-style: normal;
  width: calc(100% - 105px);
  border-left: solid 2px rgb(255, 210, 164);
  padding: 0 0 0 15px;
  color: #fff;
}
.first-view-to .box-wrapper .box .text h3 .cover {
  display: inline-block;
  color: #fff;
  background: linear-gradient(90deg, #f35c19 0%, #ffd52e 100%);
  padding: 3px 10px 3px 10px;
}
.first-view-to .box-wrapper .box .text p {
  color: #805714;
  margin: 10px 0 0 0;
  font-size: min(20px, 1.38vw);
}

.amazon_banner {
  background: linear-gradient(90deg, #fcffe9 0%, #fff2c3 100%);
  padding: 3% 0;
}
.amazon_banner .inner {
  width: 55%;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 40px;
}
.amazon_banner .inner img {
  width: 100%;
}
.amazon_banner .inner.mb_adjust {
  padding-bottom: 0;
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .first-view-to {
    max-width: 100%;
    padding: 1px 1% 0px 1%;
    margin: -30px auto 0;
  }
  .first-view-to .box-wrapper .box {
    width: 42%;
    margin: 0 2% 0 0;
    padding: 10px 20px 10px 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
  }
  .first-view-to .box-wrapper .box:nth-child(3n) {
    margin: 0 0% 0 0;
  }
  .first-view-to .box-wrapper .box .icon {
    width: 7vw;
    height: 7vw;
    padding: 0 0 0 0;
    margin: 0 15px 0 0;
    position: relative;
    line-height: 0;
  }
  .first-view-to .box-wrapper .box .icon img {
    width: 100%;
    height: auto;
  }
  .first-view-to .box-wrapper .box .icon::after {
    content: "";
    position: absolute;
    width: 92%;
    height: 92%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .first-view-to .box-wrapper .box .text {
    width: calc(100% - 7vw - 15px);
    font-weight: 700;
    padding: 0 0 0 15px;
  }
  .first-view-to .box-wrapper .box .text h3 .cover {
    padding: 3px 15px 3px 15px;
  }
  .first-view-to .box-wrapper .box .text p {
    margin: 10px 0 0 0;
    font-size: 16px;
  }
} /* 1024px～1280px responsive-close



/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .first-view-to {
    max-width: 100%;
    padding: 1px 3% 0px 3%;
    margin: -40px auto 0;
  }
  .first-view-to .box-wrapper {
    display: block;
  }
  .first-view-to .box-wrapper .box {
    width: 100%;
    margin: 25px 0 0 0;
    padding: 10px 20px 10px 20px;
    position: relative;
  }
  .first-view-to .box-wrapper .box:nth-child(3n) {
    margin: 25px 0 0 0;
  }
  .first-view-to .box-wrapper .box .icon {
    width: 10vw;
    height: 10vw;
    padding: 0 0 0 0;
    margin: 0 15px 0 0;
    position: relative;
    line-height: 0;
  }
  .first-view-to .box-wrapper .box .icon img {
    width: 100%;
    height: auto;
  }
  .first-view-to .box-wrapper .box .icon::after {
    content: "";
    position: absolute;
    width: 92%;
    height: 92%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: solid 2px rgb(244, 240, 206);
  }
  .first-view-to .box-wrapper .box .text {
    width: calc(100% - 115px);
    border-left: solid 2px rgb(255, 210, 164);
    font-weight: 700;
    padding: 0 0 0 15px;
    color: #fff;
  }
  .first-view-to .box-wrapper .box .text h3 .cover {
    display: inline-block;
    color: #fff;
    background: linear-gradient(90deg, #f35c19 0%, #ffd52e 100%);
    padding: 3px 15px 3px 15px;
  }
  .first-view-to .box-wrapper .box .text p {
    color: #ec7e24;
    margin: 10px 0 0 0;
    font-size: 16px;
  }
} /* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .first-view-to {
    max-width: 100%;
    padding: 1px 3% 0px 3%;
    margin: -60px auto 0;
  }
  .first-view-to .box-wrapper {
    display: block;
  }
  .first-view-to .box-wrapper .box {
    width: 100%;
    margin: 25px 0 0 0;
    padding: 10px 10px 10px 10px;
  }
  .first-view-to .box-wrapper .box:nth-child(3n) {
    margin: 25px 0 0 0;
  }
  .first-view-to .box-wrapper .box:after {
    border-width: 0 0 15px 30px;
  }
  .first-view-to .box-wrapper .box .icon {
    width: 18vw;
    height: 18vw;
    padding: 0 0 0 0;
    margin: 0 10px 0 0;
    position: relative;
    line-height: 0;
  }
  .first-view-to .box-wrapper .box .icon img {
    width: 100%;
    height: auto;
  }
  .first-view-to .box-wrapper .box .icon::after {
    content: "";
    position: absolute;
    width: 92%;
    height: 92%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: solid 2px rgb(244, 240, 206);
  }
  .first-view-to .box-wrapper .box .text {
    width: calc(100% - 18vw - 10px);
    border-left: solid 2px rgb(255, 210, 164);
    font-weight: 700;
    padding: 0 0 0 10px;
    color: #fff;
  }
  .first-view-to .box-wrapper .box .text h3 .cover {
    display: inline-block;
    padding: 3px 15px 3px 15px;
    font-size: 4vw;
  }
  .first-view-to .box-wrapper .box .text h3 .cover.adjust {
    font-size: 3.5vw;
  }
  .first-view-to .box-wrapper .box .text p {
    margin: 5px 0 0 0;
    font-size: 4vw;
  }
  .amazon_banner .inner {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 40px;
  }
} /* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □   

◆	Stylesheet: さらに刻んで320pxまでのモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/* 基本設定 */
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 CTA-TRIAL 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
.cta-trial {
  padding: 120px 0 0px 0;
}
.cta-trial .wrapper {
  background: linear-gradient(90deg, #fcffe9 0%, #fff2c3 100%);
  padding: 0 0 80px 0;
}
.cta-trial .wrapper .inner {
  margin: 0 0 0 0;
  padding: 5px 0 0 0;
}
.cta-trial .wrapper .inner .block {
  margin: -40px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-trial .wrapper .inner .block .icon {
  line-height: 0;
  width: 80px;
}
.cta-trial .wrapper .inner .block .icon img {
  width: 100%;
  height: auto;
}
.cta-trial .wrapper .inner .block .catch {
  font-family: "Bebas Neue", cursive;
  padding: 0 20px 0 20px;
  line-height: 1.1;
  font-size: 80px;
  color: #f0811f;
}
.cta-trial .wrapper .inner .block .catch span {
  color: #20a24c;
}
.cta-trial .wrapper .inner .element {
  display: flex;
  margin: 40px 0 0 0;
  align-items: center;
  justify-content: center;
}
.cta-trial .wrapper .inner .element .mark {
  margin: 0 30px 0 0;
}
.cta-trial .wrapper .inner .element .mark .line {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: solid 3px #f0d51f;
  border-radius: 2px;
  transform: skew(-20deg);
  padding: 5px 50px 5px 50px;
}
.cta-trial .wrapper .inner .element .mark .line .icon {
  line-height: 0;
  width: 45px;
  margin: 0 10px 0 0;
  transform: skew(20deg);
}
.cta-trial .wrapper .inner .element .mark .line p {
  transform: skew(20deg);
  font-family: zen-maru-gothic, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #977603;
  font-size: 25px;
}
.cta-trial .wrapper .inner .element .mark:nth-child(2) {
  margin: 0 0 0 0;
}
.cta-trial .wrapper .inner .factor {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 65px 0 0 0;
}
.cta-trial .wrapper .inner .factor h2 {
  font-family: nitalago-ruika, sans-serif;
  font-weight: 100;
  font-style: normal;
  color: #f0811f;
  font-size: 35px;
  margin: 0 100px 0 0;
}
.cta-trial .wrapper .inner .factor h2 .minamoto {
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 900;
}
.cta-trial .wrapper .inner .factor h2 .color {
  color: #20a24c;
}
.cta-trial .wrapper .inner .factor .button {
  width: 600px;
}
.cta-trial .wrapper .inner .factor .button a {
  text-decoration: none;
  background: linear-gradient(90deg, #0b9f5b 0%, #78af0e 100%);
  border-bottom: solid 6px #055630;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0 20px 0;
}
.cta-trial .wrapper .inner .factor .button a .circle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: -40px;
  transform: translate(0, -50%);
  width: 140px;
  height: 140px;
  background: linear-gradient(90deg, #f35c19 0%, #ffd52e 100%);
  border-radius: 50%;
}
.cta-trial .wrapper .inner .factor .button a .circle .cover {
  text-align: center;
}
.cta-trial .wrapper .inner .factor .button a .circle .cover .sub {
  display: inline-block;
  font-family: zen-maru-gothic, sans-serif;
  font-weight: 700;
  font-style: normal;
  background: #fff;
  color: #f5751d;
  font-size: 20px;
  padding: 0 30px 0 30px;
  border-radius: 100px;
  border: solid 2px #f5751d;
  margin: -10px 0 0 0;
}
.cta-trial .wrapper .inner .factor .button a .circle .cover .main {
  display: flex;
  align-items: center;
}
.cta-trial .wrapper .inner .factor .button a .circle .cover .main .big {
  font-family: "Bebas Neue", cursive;
  color: #fcffa0;
  line-height: 1;
  font-size: 60px;
  margin: 0 5px 0 0;
}
.cta-trial .wrapper .inner .factor .button a .circle .cover .main .small {
  color: #fff;
  line-height: 1.1;
  font-size: 24px;
  font-family: zen-maru-gothic, sans-serif;
  font-weight: 700;
  font-style: normal;
}
.cta-trial .wrapper .inner .factor .button a .circle .cover .semi {
  color: #fff;
  font-size: 24px;
  line-height: 1.1;
  font-family: zen-maru-gothic, sans-serif;
  font-weight: 700;
  font-style: normal;
  margin: -5px 0 0;
}
.cta-trial .wrapper .inner .factor .button a .catch {
  font-family: nitalago-ruika, sans-serif;
  font-weight: 100;
  font-style: normal;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  font-size: 30px;
  padding: 0 0 0 40px;
}
.cta-trial .wrapper .inner .factor .button a .arrow {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 20px;
  width: 40px;
}
.cta-trial .wrapper .inner .factor .button a .arrow img {
  width: 100%;
  height: auto;
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
/* 1024px～1280px responsive-close



/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
/* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .cta-trial {
    padding: 60px 0 0px 0;
  }
  .cta-trial .wrapper {
    padding: 0 0 80px 0;
  }
  .cta-trial .wrapper .inner {
    margin: 0 0 0 0;
    padding: 5px 0 0 0;
  }
  .cta-trial .wrapper .inner .block {
    margin: -30px 0 0 0;
  }
  .cta-trial .wrapper .inner .block .icon {
    line-height: 0;
    width: 14vw;
  }
  .cta-trial .wrapper .inner .block .icon img {
    width: 100%;
    height: auto;
  }
  .cta-trial .wrapper .inner .block .catch {
    padding: 0 10px 0 10px;
    font-size: 14vw;
  }
  .cta-trial .wrapper .inner .element {
    display: block;
    margin: 20px 0 0 0;
  }
  .cta-trial .wrapper .inner .element .mark {
    text-align: center;
    margin: 10px 0px 0 0;
  }
  .cta-trial .wrapper .inner .element .mark .line {
    padding: 5px 30px 5px 30px;
  }
  .cta-trial .wrapper .inner .element .mark .line .icon {
    line-height: 0;
    width: 5vw;
    margin: 0 10px 0 0;
    transform: skew(20deg);
  }
  .cta-trial .wrapper .inner .element .mark .line p {
    font-size: 4.5vw;
  }
  .cta-trial .wrapper .inner .element .mark:nth-child(2) {
    margin: 10px 0 0 0;
  }
  .cta-trial .wrapper .inner .factor {
    margin: 25px 0 0 0;
    display: block;
  }
  .cta-trial .wrapper .inner .factor h2 {
    font-size: 7vw;
    margin: 0 0px 0 0;
    text-align: center;
  }
  .cta-trial .wrapper .inner .factor .button {
    width: 90%;
    margin: 20px auto 0;
  }
  .cta-trial .wrapper .inner .factor .button a {
    padding: 20px 0 20px 0;
  }
  .cta-trial .wrapper .inner .factor .button a .circle {
    top: 50%;
    left: -10px;
    transform: translate(0, -50%);
    width: 25vw;
    height: 25vw;
    border-radius: 50%;
  }
  .cta-trial .wrapper .inner .factor .button a .circle .cover {
    text-align: center;
  }
  .cta-trial .wrapper .inner .factor .button a .circle .cover .sub {
    font-size: 3.5vw;
    padding: 0 10px 0 10px;
    margin: -10px 0 0 0;
  }
  .cta-trial .wrapper .inner .factor .button a .circle .cover .main .big {
    line-height: 1;
    font-size: 11vw;
    margin: -3px 3px 0 0;
  }
  .cta-trial .wrapper .inner .factor .button a .circle .cover .main .small {
    font-size: 4vw;
  }
  .cta-trial .wrapper .inner .factor .button a .circle .cover .semi {
    font-size: 4vw;
    margin: -5px 0 0 0;
  }
  .cta-trial .wrapper .inner .factor .button a .catch {
    font-size: 5vw;
    padding: 0 0 0 40px;
  }
  .cta-trial .wrapper .inner .factor .button a .arrow {
    top: 50%;
    right: 15px;
    width: 6vw;
  }
  .cta-trial .wrapper .inner .factor .button a .arrow img {
    width: 100%;
    height: auto;
  }
} /* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □   

◆	Stylesheet: さらに刻んで320pxまでのモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
/* 320px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/* 基本設定 */
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 CTA-ENTRY 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
.cta-entry {
  overflow: hidden;
}
.cta-entry .wrapper {
  background: linear-gradient(90deg, #fcffe9 0%, #fff2c3 100%);
  margin: 0px 0 0 0;
  padding: 50px 0 0 0;
}
.cta-entry .wrapper .anniversary_banner {
  background: url(../images/body_PC.jpg) no-repeat top center/cover;
  padding: 6% 0;
  position: relative;
}
.cta-entry .wrapper .anniversary_banner .h2_top {
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  margin: 0 auto 0;
  font-size: max(2vw, 48px);
  color: #fff;
  display: block;
  position: relative;
  font-family: nitalago-ruika, sans-serif;
  font-weight: bold;
}
.cta-entry .wrapper .anniversary_banner .ann_h2 {
  color: #fff;
  text-align: center;
  font-family: nitalago-ruika, sans-serif;
  font-size: 4.1vw;
  line-height: 1.1;
  letter-spacing: 3px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 1% auto 0;
  position: relative;
}
.cta-entry .wrapper .anniversary_banner .bg_grad {
  display: block;
  color: #fff;
  background: #fff;
  padding: 0.5% 2.8%;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  line-height: 1;
  font-family: nitalago-ruika, sans-serif;
  font-size: 3vw;
  margin: 1% auto;
  color: #f84606;
}
.cta-entry .wrapper .block {
  margin: 0px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-entry .wrapper .block .icon {
  line-height: 0;
  width: 80px;
}
.cta-entry .wrapper .block .icon img {
  width: 100%;
  height: auto;
}
.cta-entry .wrapper .block .catch {
  font-family: "Bebas Neue", cursive;
  padding: 0 20px 0 20px;
  line-height: 1.1;
  font-size: 80px;
  color: #f0811f;
}
.cta-entry .wrapper .block .catch span {
  font-family: "Bebas Neue", cursive;
  color: #20a24c;
}
.cta-entry .wrapper .block .catch span.en {
  color: #20a24c;
  font-family: "Bebas Neue", cursive;
}
.cta-entry .wrapper .title h2 {
  text-align: center;
}
.cta-entry .wrapper .title h2 .cover {
  font-family: nitalago-ruika, sans-serif;
  font-weight: 100;
  font-style: normal;
  background: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 80px 10px 80px;
  font-size: 40px;
  box-shadow: rgba(191, 140, 31, 0.2) 0px 7px 29px 0px;
}
.cta-entry .wrapper .title h2 .cover:before {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  border: 24px solid transparent;
  border-top: 24px solid #fff;
  z-index: 2;
  transform: translate(-50%, 0);
}
.cta-entry .wrapper .title h2 .cover .mark {
  background: #f5791d;
  padding: 5px 20px 5px 20px;
  color: #fff;
  margin: 0 15px 0 0;
  display: inline-block;
  position: relative;
}
.cta-entry .wrapper .title h2 .cover .catch {
  color: #ff0000;
}
.cta-entry .wrapper .title h2 .cover .text {
  font-size: 1.7vw;
}
.cta-entry .wrapper .inner {
  padding: 0 0 50px;
  background: linear-gradient(to bottom, #fccbbd, #429aea);
}
.cta-entry .wrapper .inner .summer_title {
  font-size: min(5vw, 80px);
  text-align: center;
  color: #ef0700;
  font-family: nitalago-ruika, sans-serif;
  padding: 2% 0 0;
  margin: 0 0 2%;
}
.cta-entry .wrapper .inner .summer_title span {
  font-size: min(8vw, 100px);
}
.cta-entry .wrapper .inner .box-wrapper {
  display: flex;
  align-items: stretch;
  max-width: 1920px;
  padding: 0 3% 0 3%;
  margin: 0 auto 0;
  flex-wrap: wrap;
  justify-content: space-around;
}
.cta-entry .wrapper .inner .box-wrapper .box {
  background: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  width: 48.5%;
  margin: 0 3% 0 0;
  position: relative;
  padding: 20px 50px 20px 50px;
  display: flex;
  align-items: center;
}
.cta-entry .wrapper .inner .box-wrapper .box.summer_color:before {
  border-color: #ff9908 transparent transparent transparent;
}
.cta-entry .wrapper .inner .box-wrapper .box.summer_color:after {
  border-color: transparent transparent #ff9908 transparent;
}
.cta-entry .wrapper .inner .box-wrapper .box.ann_color:before {
  border-color: #ff9908 transparent transparent transparent;
}
.cta-entry .wrapper .inner .box-wrapper .box.ann_color:after {
  border-color: transparent transparent #ff9908 transparent;
}
.cta-entry .wrapper .inner .box-wrapper .box.ann2_color:before {
  border-color: #fa4605 transparent transparent transparent;
}
.cta-entry .wrapper .inner .box-wrapper .box.ann2_color:after {
  border-color: transparent transparent #fa4605 transparent;
}
.cta-entry .wrapper .inner .box-wrapper .box.ann3_color:before {
  border-color: #1dbba6 transparent transparent transparent;
}
.cta-entry .wrapper .inner .box-wrapper .box.ann3_color:after {
  border-color: transparent transparent #1dbba6 transparent;
}
.cta-entry .wrapper .inner .box-wrapper .box:nth-of-type(n + 3) {
  margin: 30px 3% 0 0;
}
.cta-entry .wrapper .inner .box-wrapper .box .inset {
  display: flex;
  align-items: center;
}
.cta-entry .wrapper .inner .box-wrapper .box .inset .thumb {
  line-height: 0;
  width: 120px;
  position: relative;
}
.cta-entry .wrapper .inner .box-wrapper .box .inset .thumb img {
  width: 100%;
  height: auto;
}
.cta-entry .wrapper .inner .box-wrapper .box .inset .thumb:before {
  content: "";
  position: absolute;
  width: 90%;
  height: 90%;
  border: solid 3px #ff9908;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cta-entry .wrapper .inner .box-wrapper .box .inset .text {
  padding: 0 0px 0 20px;
  width: calc(100% - 120px);
}
.cta-entry .wrapper .inner .box-wrapper .box .inset .text h3 {
  font-family: nitalago-ruika, sans-serif;
  font-weight: 100;
  font-style: normal;
}
.cta-entry .wrapper .inner .box-wrapper .box .inset .text h3 .cover {
  color: #e13b20;
}
.cta-entry .wrapper .inner .box-wrapper .box .inset .text .sentence {
  line-height: 1.1;
}
.cta-entry .wrapper .inner .box-wrapper .box .inset .text .sentence .first {
  font-family: nitalago-ruika, sans-serif;
  font-weight: 100;
  font-style: normal;
  color: #88623e;
  font-size: 24px;
}
.cta-entry .wrapper .inner .box-wrapper .box .inset .text .sentence .first .color {
  color: #88623e;
}
.cta-entry .wrapper .inner .box-wrapper .box .inset .text .sentence .second {
  font-family: nitalago-ruika, sans-serif;
  font-weight: 100;
  font-style: normal;
  color: #ef0700;
  font-size: 37px;
}
.cta-entry .wrapper .inner .box-wrapper .box .inset .text .sentence .second.fz_adjust {
  font-size: 30px;
}
.cta-entry .wrapper .inner .box-wrapper .box .inset .text .sentence .third {
  font-family: nitalago-ruika, sans-serif;
  font-weight: 100;
  font-style: normal;
  color: #ff0000;
  font-size: 34px;
}
.cta-entry .wrapper .inner .box-wrapper .box .inset .text .sentence .small {
  font-size: 0.7em;
}
.cta-entry .wrapper .inner .box-wrapper .box .inset .text .sentence .caption {
  margin: 5px 0 0 0;
}
.cta-entry .wrapper .inner .box-wrapper .box .inset .text .sentence .caption p {
  font-size: 15px;
  font-weight: 700;
  color: #633202;
}
.cta-entry .wrapper .inner .box-wrapper .box:nth-child(2n) {
  margin: 0;
}
.cta-entry .wrapper .inner .box-wrapper .box:before, .cta-entry .wrapper .inner .box-wrapper .box:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}
.cta-entry .wrapper .inner .box-wrapper .box:before {
  border-width: 30px 60px 0 0;
  border-color: #ec7e24 transparent transparent transparent;
  left: 0;
  top: 0;
}
.cta-entry .wrapper .inner .box-wrapper .box:after {
  border-width: 0 0 30px 60px;
  border-color: transparent transparent #ec7e24 transparent;
  right: 0;
  bottom: 0;
}
.cta-entry .wrapper .inner .factor {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 130px 0 0 0;
}
.cta-entry .wrapper .inner .factor h2 {
  font-family: nitalago-ruika, sans-serif;
  font-weight: 100;
  font-style: normal;
  color: #f0811f;
  font-size: 35px;
  margin: 0 100px 0 0;
}
.cta-entry .wrapper .inner .factor h2 .minamoto {
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 900;
}
.cta-entry .wrapper .inner .factor h2 .color {
  color: #20a24c;
}
.cta-entry .wrapper .inner .factor .button {
  width: 600px;
  position: relative;
  animation-name: cta-entry-button-updown; /* アニメーション名の指定 */
  animation-delay: 0s; /* アニメーションの開始時間指定 */
  animation-duration: 2s; /* アニメーション動作時間の指定 */
  animation-timing-function: ease-in-out; /* アニメーションの動き指定（徐々に早く）*/
  animation-iteration-count: infinite;
}
.cta-entry .wrapper .inner .factor .button:after {
  content: "";
  background: url(../images/cta_text.svg) no-repeat center center/contain;
  width: 70%;
  height: 35%;
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
}
@keyframes cta-entry-button-updown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0);
  }
}
.cta-entry .wrapper .inner .factor .button a {
  text-decoration: none;
  background: linear-gradient(0deg, #0b9f5b 0%, #78af0e 100%);
  border-bottom: solid 10px #055630;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0 20px 0;
  position: relative;
}
.cta-entry .wrapper .inner .factor .button a .circle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: -40px;
  transform: translate(0, -50%);
  width: 140px;
  height: 140px;
  background: linear-gradient(90deg, #f35c19 0%, #ffd52e 100%);
  border-radius: 50%;
}
.cta-entry .wrapper .inner .factor .button a .circle .cover {
  text-align: center;
}
.cta-entry .wrapper .inner .factor .button a .circle .cover .sub {
  display: inline-block;
  font-family: zen-maru-gothic, sans-serif;
  font-weight: 700;
  font-style: normal;
  background: #fff;
  color: #f5751d;
  font-size: 20px;
  padding: 0 30px 0 30px;
  border-radius: 100px;
  border: solid 2px #f5751d;
  margin: -10px 0 0 0;
}
.cta-entry .wrapper .inner .factor .button a .circle .cover .main {
  display: flex;
  align-items: center;
}
.cta-entry .wrapper .inner .factor .button a .circle .cover .main .big {
  font-family: "Bebas Neue", cursive;
  color: #fcffa0;
  line-height: 1;
  font-size: 60px;
  margin: 0 5px 0 0;
}
.cta-entry .wrapper .inner .factor .button a .circle .cover .main .small {
  color: #fff;
  line-height: 1.1;
  font-size: 24px;
  font-family: zen-maru-gothic, sans-serif;
  font-weight: 700;
  font-style: normal;
}
.cta-entry .wrapper .inner .factor .button a .circle .cover .semi {
  color: #fff;
  font-size: 24px;
  line-height: 1.1;
  font-family: zen-maru-gothic, sans-serif;
  font-weight: 700;
  font-style: normal;
  margin: -5px 0 0;
}
.cta-entry .wrapper .inner .factor .button a .catch {
  font-family: nitalago-ruika, sans-serif;
  font-weight: 100;
  font-style: normal;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  font-size: 30px;
  padding: 0 0 0 40px;
}
.cta-entry .wrapper .inner .factor .button a .arrow {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 20px;
  width: 40px;
}
.cta-entry .wrapper .inner .factor .button a .arrow img {
  width: 100%;
  height: auto;
}
.cta-entry .wrapper .inner .hosoku {
  margin: 30px 0 0 0;
}
.cta-entry .wrapper .inner .hosoku .sentence p {
  text-align: center;
  font-size: 18px;
  line-height: 1.8;
  padding: 10px 0 10px 0;
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .cta-entry .wrapper {
    margin: 0px 0 0 0;
    padding: 50px 0 0 0;
  }
  .cta-entry .wrapper .block {
    margin: 0px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cta-entry .wrapper .block .icon {
    line-height: 0;
    width: 80px;
  }
  .cta-entry .wrapper .block .icon img {
    width: 100%;
    height: auto;
  }
  .cta-entry .wrapper .block .catch {
    padding: 0 20px 0 20px;
    line-height: 1.1;
    font-size: 80px;
  }
  .cta-entry .wrapper .title h2 {
    text-align: center;
  }
  .cta-entry .wrapper .title h2 .cover {
    display: inline-flex;
    align-items: center;
    padding: 10px 80px 10px 80px;
    font-size: 40px;
  }
  .cta-entry .wrapper .title h2 .cover:before {
    bottom: -40px;
    left: 50%;
    border: 24px solid transparent;
    border-top: 24px solid #fff;
    transform: translate(-50%, 0);
  }
  .cta-entry .wrapper .title h2 .cover .mark {
    padding: 5px 20px 5px 20px;
    margin: 0 15px 0 0;
  }
  .cta-entry .wrapper .inner {
    padding: 0 0 50px;
  }
  .cta-entry .wrapper .inner .box-wrapper {
    max-width: 1920px;
    padding: 0 2% 0 2%;
  }
  .cta-entry .wrapper .inner .box-wrapper .box {
    width: 48.5%;
    margin: 30px 3% 0 0;
    padding: 20px 50px 20px 50px;
  }
  .cta-entry .wrapper .inner .box-wrapper .box .inset {
    display: flex;
    align-items: center;
  }
  .cta-entry .wrapper .inner .box-wrapper .box .inset .thumb {
    line-height: 0;
    width: 90px;
    position: relative;
  }
  .cta-entry .wrapper .inner .box-wrapper .box .inset .thumb img {
    width: 100%;
    height: auto;
  }
  .cta-entry .wrapper .inner .box-wrapper .box .inset .thumb:before {
    content: "";
    position: absolute;
    width: 90%;
    height: 90%;
    border: solid 3px #ec7e24;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .cta-entry .wrapper .inner .box-wrapper .box .inset .text {
    padding: 0 0px 0 20px;
    width: calc(100% - 90px);
  }
  .cta-entry .wrapper .inner .box-wrapper .box .inset .text h3 .cover {
    color: #633202;
  }
  .cta-entry .wrapper .inner .box-wrapper .box .inset .text .sentence {
    line-height: 1.1;
  }
  .cta-entry .wrapper .inner .box-wrapper .box .inset .text .sentence .first {
    font-size: 2vw;
  }
  .cta-entry .wrapper .inner .box-wrapper .box .inset .text .sentence .second {
    font-size: 3vw;
  }
  .cta-entry .wrapper .inner .box-wrapper .box .inset .text .sentence .third {
    font-size: 2.85vw;
  }
  .cta-entry .wrapper .inner .box-wrapper .box .inset .text .sentence .small {
    font-size: 0.7em;
  }
  .cta-entry .wrapper .inner .box-wrapper .box .inset .text .sentence .caption {
    margin: 5px 0 0 0;
  }
  .cta-entry .wrapper .inner .box-wrapper .box .inset .text .sentence .caption p {
    font-size: 15px;
  }
  .cta-entry .wrapper .inner .box-wrapper .box:nth-child(2n) {
    margin: 30px 0 0 0;
  }
  .cta-entry .wrapper .inner .box-wrapper .box:before, .cta-entry .wrapper .inner .box-wrapper .box:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
  }
  .cta-entry .wrapper .inner .box-wrapper .box:before {
    border-width: 30px 60px 0 0;
    border-color: #ec7e24 transparent transparent transparent;
    left: 0;
    top: 0;
  }
  .cta-entry .wrapper .inner .box-wrapper .box:after {
    border-width: 0 0 30px 60px;
    border-color: transparent transparent #ec7e24 transparent;
    right: 0;
    bottom: 0;
  }
  .cta-entry .wrapper .inner .factor {
    padding: 0 2% 0 2%;
  }
  .cta-entry .wrapper .inner .factor h2 {
    font-size: 35px;
    margin: 0 100px 0 0;
  }
  .cta-entry .wrapper .inner .factor .button .floating{
    width: 600px;
    position: relative;
    animation-name: cta-entry-button-updown; /* アニメーション名の指定 */
    animation-delay: 0s; /* アニメーションの開始時間指定 */
    animation-duration: 2s; /* アニメーション動作時間の指定 */
    animation-timing-function: ease-in-out; /* アニメーションの動き指定（徐々に早く）*/
    animation-iteration-count: infinite;
  }
  @keyframes cta-entry-button-updown {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-30px);
    }
    100% {
      transform: translateY(0);
    }
  }
  .cta-entry .wrapper .inner .factor .button a {
    border-bottom: solid 6px #055630;
    padding: 20px 0 20px 0;
    position: relative;
  }
  .cta-entry .wrapper .inner .factor .button a .circle {
    top: 50%;
    left: -40px;
    transform: translate(0, -50%);
    width: 140px;
    height: 140px;
    border-radius: 50%;
  }
  .cta-entry .wrapper .inner .factor .button a .circle .cover .sub {
    font-size: 20px;
    padding: 0 30px 0 30px;
    border-radius: 100px;
    margin: -10px 0 0 0;
  }
  .cta-entry .wrapper .inner .factor .button a .circle .cover .main {
    display: flex;
    align-items: center;
  }
  .cta-entry .wrapper .inner .factor .button a .circle .cover .main .big {
    line-height: 1;
    font-size: 60px;
    margin: 0 5px 0 0;
  }
  .cta-entry .wrapper .inner .factor .button a .circle .cover .main .small {
    line-height: 1.1;
    font-size: 24px;
  }
  .cta-entry .wrapper .inner .factor .button a .circle .cover .semi {
    font-size: 24px;
    line-height: 1.1;
    margin: -5px 0 0;
  }
  .cta-entry .wrapper .inner .factor .button a .catch {
    line-height: 1.2;
    font-size: 30px;
    padding: 0 0 0 40px;
  }
  .cta-entry .wrapper .inner .factor .button a .arrow {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 20px;
    width: 40px;
  }
  .cta-entry .wrapper .inner .factor .button a .arrow img {
    width: 100%;
    height: auto;
  }
  .cta-entry .wrapper .inner .hosoku {
    margin: 20px 0 0 0;
  }
  .cta-entry .wrapper .inner .hosoku .sentence p {
    text-align: center;
    font-size: 1.35vw;
    line-height: 1.8;
    padding: 10px 0 10px 0;
  }
} /* 1024px～1280px responsive-close



/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .cta-entry .wrapper {
    margin: 0px 0 0 0;
    padding: 50px 0 0 0;
  }
  .cta-entry .wrapper .block {
    margin: 0px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cta-entry .wrapper .block .icon {
    line-height: 0;
    width: 80px;
  }
  .cta-entry .wrapper .block .icon img {
    width: 100%;
    height: auto;
  }
  .cta-entry .wrapper .block .catch {
    padding: 0 20px 0 20px;
    line-height: 1.1;
    font-size: 80px;
  }
  .cta-entry .wrapper .block .catch span {
    font-size: min(80px, 11.7vw);
  }
  .cta-entry .wrapper .title h2 {
    text-align: center;
  }
  .cta-entry .wrapper .title h2 .cover {
    display: inline-block;
    padding: 10px 30px 10px 30px;
    font-size: 40px;
    text-align: center;
    width: 80%;
  }
  .cta-entry .wrapper .title h2 .cover:before {
    bottom: -40px;
    left: 50%;
    border: 24px solid transparent;
    border-top: 24px solid #fff;
    transform: translate(-50%, 0);
  }
  .cta-entry .wrapper .title h2 .cover .mark {
    padding: 5px 20px 5px 20px;
    margin: 0 0 0 0;
    display: inline-block;
  }
  .cta-entry .wrapper .title h2 .cover .text {
    font-size: 3vw;
  }
  .cta-entry .wrapper .inner {
    padding: 0 0 50px;
  }
  .cta-entry .wrapper .inner .box-wrapper {
    max-width: 1920px;
    padding: 0 2% 0 2%;
  }
  .cta-entry .wrapper .inner .box-wrapper .box {
    width: 48.5%;
    padding: 20px 25px 20px 25px;
  }
  .cta-entry .wrapper .inner .box-wrapper .box .inset {
    display: flex;
    align-items: center;
  }
  .cta-entry .wrapper .inner .box-wrapper .box .inset .thumb {
    width: 80px;
  }
  .cta-entry .wrapper .inner .box-wrapper .box .inset .text {
    width: calc(100% - 80px);
    padding: 0 0px 0 15px;
  }
  .cta-entry .wrapper .inner .box-wrapper .box .inset .text h3 .cover {
    color: #633202;
    font-size: 2vw;
  }
  .cta-entry .wrapper .inner .box-wrapper .box .inset .text .sentence {
    line-height: 1.1;
  }
  .cta-entry .wrapper .inner .box-wrapper .box .inset .text .sentence .first {
    font-size: 2.75vw;
  }
  .cta-entry .wrapper .inner .box-wrapper .box .inset .text .sentence .second {
    font-size: 4vw;
  }
  .cta-entry .wrapper .inner .box-wrapper .box .inset .text .sentence .third {
    font-size: 3vw;
  }
  .cta-entry .wrapper .inner .box-wrapper .box .inset .text .sentence .small {
    font-size: 0.7em;
  }
  .cta-entry .wrapper .inner .box-wrapper .box .inset .text .sentence .caption {
    margin: 5px 0 0 0;
  }
  .cta-entry .wrapper .inner .box-wrapper .box .inset .text .sentence .caption p {
    font-size: 15px;
  }
  .cta-entry .wrapper .inner .box-wrapper .box:before, .cta-entry .wrapper .inner .box-wrapper .box:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
  }
  .cta-entry .wrapper .inner .box-wrapper .box:before {
    border-width: 30px 60px 0 0;
    border-color: #ec7e24 transparent transparent transparent;
    left: 0;
    top: 0;
  }
  .cta-entry .wrapper .inner .box-wrapper .box:after {
    border-width: 0 0 30px 60px;
    border-color: transparent transparent #ec7e24 transparent;
    right: 0;
    bottom: 0;
  }
  .cta-entry .wrapper .inner .factor {
    padding: 0 0% 0 0;
    display: block;
  }
  .cta-entry .wrapper .inner .factor h2 {
    font-size: 35px;
    margin: 0 0px 0 0;
    padding: 0 0 50px 0;
    text-align: center;
  }
  .cta-entry .wrapper .inner .factor .button .floating{
    width: 600px;
    position: relative;
    animation-name: cta-entry-button-updown; /* アニメーション名の指定 */
    animation-delay: 0s; /* アニメーションの開始時間指定 */
    animation-duration: 2s; /* アニメーション動作時間の指定 */
    animation-timing-function: ease-in-out; /* アニメーションの動き指定（徐々に早く）*/
    animation-iteration-count: infinite;
    margin: 0 auto 0;
  }
  @keyframes cta-entry-button-updown {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-30px);
    }
    100% {
      transform: translateY(0);
    }
  }
  .cta-entry .wrapper .inner .factor .button a {
    border-bottom: solid 6px #055630;
    padding: 20px 0 20px 0;
    position: relative;
  }
  .cta-entry .wrapper .inner .factor .button a .circle {
    top: 50%;
    left: -40px;
    transform: translate(0, -50%);
    width: 140px;
    height: 140px;
    border-radius: 50%;
  }
  .cta-entry .wrapper .inner .factor .button a .circle .cover .sub {
    font-size: 20px;
    padding: 0 30px 0 30px;
    border-radius: 100px;
    margin: -10px 0 0 0;
  }
  .cta-entry .wrapper .inner .factor .button a .circle .cover .main {
    display: flex;
    align-items: center;
  }
  .cta-entry .wrapper .inner .factor .button a .circle .cover .main .big {
    line-height: 1;
    font-size: 60px;
    margin: 0 5px 0 0;
  }
  .cta-entry .wrapper .inner .factor .button a .circle .cover .main .small {
    line-height: 1.1;
    font-size: 24px;
  }
  .cta-entry .wrapper .inner .factor .button a .circle .cover .semi {
    font-size: 24px;
    line-height: 1.1;
    margin: -5px 0 0;
  }
  .cta-entry .wrapper .inner .factor .button a .catch {
    line-height: 1.2;
    font-size: 30px;
    padding: 0 0 0 40px;
  }
  .cta-entry .wrapper .inner .factor .button a .arrow {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 20px;
    width: 40px;
  }
  .cta-entry .wrapper .inner .factor .button a .arrow img {
    width: 100%;
    height: auto;
  }
  .cta-entry .wrapper .inner .hosoku {
    margin: 20px 0 0 0;
  }
  .cta-entry .wrapper .inner .hosoku .sentence p {
    text-align: center;
    font-size: 1.85vw;
    line-height: 1.8;
    padding: 10px 0 10px 0;
  }
  .cta-entry .wrapper .inner .hosoku .sentence p .sp-disblock {
    display: none;
  }
} /* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .cta-entry .wrapper {
    margin: 0px 0 0 0;
  }
  .cta-entry .wrapper .anniversary_banner {
    padding: 18% 0;
    background-image: url(../images/body_SP.jpg);
  }
  .cta-entry .wrapper .anniversary_banner:after {
    bottom: -46px;
    border-width: 24px;
  }
  .cta-entry .wrapper .anniversary_banner .h2_top {
    font-size: max(5vw, 20px);
    font-weight: normal;
  }
  .cta-entry .wrapper .anniversary_banner .h2_top:before {
    content: "";
    width: 25px;
    height: 25px;
  }
  .cta-entry .wrapper .anniversary_banner .h2_top:after {
    content: "";
    width: 15px;
    height: 15px;
  }
  .cta-entry .wrapper .anniversary_banner .ann_h2 {
    font-size: 6.5vw;
    white-space: nowrap;
    letter-spacing: 1px;
    font-weight: 400;
    margin-top: 3%;
  }
  .cta-entry .wrapper .anniversary_banner .ann_h2:before {
    font-size: 8vw;
    font-weight: 400;
    bottom: 98%;
  }
  .cta-entry .wrapper .anniversary_banner .bg_grad {
    font-size: 4.7vw;
    padding: 2% 6%;
    font-weight: bold;
    margin: 3% auto 0;
  }
  .cta-entry .wrapper .block {
    margin: 0px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cta-entry .wrapper .block .icon {
    line-height: 0;
    width: 12vw;
  }
  .cta-entry .wrapper .block .icon img {
    width: 100%;
    height: auto;
  }
  .cta-entry .wrapper .block .catch {
    padding: 0 15px 0 15px;
    line-height: 1.1;
    font-size: 11vw;
  }
  .cta-entry .wrapper .title h2 {
    text-align: center;
  }
  .cta-entry .wrapper .title h2 .cover {
    display: block;
    text-align: center;
    padding: 10px 0px 10px 0px;
    font-size: 6vw;
    width: 100%;
  }
  .cta-entry .wrapper .title h2 .cover:before {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 50%;
    border: 24px solid transparent;
    border-top: 24px solid #fff;
    z-index: 2;
    transform: translate(-50%, 0);
  }
  .cta-entry .wrapper .title h2 .cover .mark {
    display: inline-block;
    padding: 5px 20px 5px 20px;
    margin: 0 0 0 0;
  }
  .cta-entry .wrapper .title h2 .cover .catch {
    font-size: 5.5vw;
  }
  .cta-entry .wrapper .title h2 .cover .text {
    font-size: 4vw;
  }
  .cta-entry .wrapper .inner {
    padding: 0 0 7%;
    background: linear-gradient(to bottom, #fccbbd, #429aea),;

    /* background: linear-gradient(to bottom, #04bade, #ffd773); */
  }
  .cta-entry .wrapper .inner .summer_title {
    font-size: 9.3vw;
    text-align: center;
    color: #ef0700;
    font-family: nitalago-ruika, sans-serif;
    padding: 4% 0 0;
    font-weight: bold;
  }
  .cta-entry .wrapper .inner .summer_title span {
    font-size: 13.9vw;
  }
  .cta-entry .wrapper .inner .box-wrapper {
    display: block;
    align-items: stretch;
    max-width: 1920px;
    padding: 0 3% 0 3%;
    margin: 0 auto 0;
    flex-wrap: wrap;
  }
  .cta-entry .wrapper .inner .box-wrapper .box {
    background: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    width: 100%;
    margin: 15px 0 0 0;
    position: relative;
    padding: 20px 20px 20px 20px;
    display: flex;
    align-items: center;
  }
  .cta-entry .wrapper .inner .box-wrapper .box:nth-of-type(n + 3) {
    margin: 15px 0 0 0;
  }
  .cta-entry .wrapper .inner .box-wrapper .box .inset {
    display: flex;
    align-items: center;
  }
  .cta-entry .wrapper .inner .box-wrapper .box .inset .thumb {
    width: 20vw;
  }
  .cta-entry .wrapper .inner .box-wrapper .box .inset .text {
    width: calc(100% - 20vw);
    padding: 0 0px 0 15px;
    letter-spacing: -1px;
  }
  .cta-entry .wrapper .inner .box-wrapper .box .inset .text h3 .cover {
    font-size: 4vw;
  }
  .cta-entry .wrapper .inner .box-wrapper .box .inset .text .sentence {
    line-height: 1.35;
  }
  .cta-entry .wrapper .inner .box-wrapper .box .inset .text .sentence .first {
    font-size: 4.5vw;
  }
  .cta-entry .wrapper .inner .box-wrapper .box .inset .text .sentence .first br {
    display: none;
  }
  .cta-entry .wrapper .inner .box-wrapper .box .inset .text .sentence .second {
    font-size: 6.5vw;
  }
  .cta-entry .wrapper .inner .box-wrapper .box .inset .text .sentence .second.fz_adjust {
    font-size: 5.2vw;
  }
  .cta-entry .wrapper .inner .box-wrapper .box .inset .text .sentence .second br {
    display: none;
  }
  .cta-entry .wrapper .inner .box-wrapper .box .inset .text .sentence .third {
    font-size: 5.5vw;
  }
  .cta-entry .wrapper .inner .box-wrapper .box .inset .text .sentence .small {
    font-size: 0.7em;
  }
  .cta-entry .wrapper .inner .box-wrapper .box .inset .text .sentence .caption {
    margin: 5px 0 0 0;
  }
  .cta-entry .wrapper .inner .box-wrapper .box .inset .text .sentence .caption p {
    font-size: 15px;
  }
  .cta-entry .wrapper .inner .box-wrapper .box:nth-child(2n) {
    margin: 15px 0 0 0;
  }
  .cta-entry .wrapper .inner .box-wrapper .box:before, .cta-entry .wrapper .inner .box-wrapper .box:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
  }
  .cta-entry .wrapper .inner .box-wrapper .box:before {
    border-width: 15px 30px 0 0;
    border-color: #ec7e24 transparent transparent transparent;
    left: 0;
    top: 0;
  }
  .cta-entry .wrapper .inner .box-wrapper .box:after {
    border-width: 0 0 15px 30px;
    border-color: transparent transparent #ec7e24 transparent;
    right: 0;
    bottom: 0;
  }
  .cta-entry .wrapper .inner .factor {
    display: block;
    margin: 20% 0 0 0;
  }
  .cta-entry .wrapper .inner .factor h2 {
    font-size: 6vw;
    text-align: center;
    margin: 0 0 0 0;
    padding: 0 0 25px 0;
  }
  .cta-entry .wrapper .inner .factor .button {
    width: 87.5%;
    margin: 20px auto 0;
    animation-name: cta-entry-button-updown; /* アニメーション名の指定 */
    animation-delay: 0s; /* アニメーションの開始時間指定 */
    animation-duration: 2s; /* アニメーション動作時間の指定 */
    animation-timing-function: ease-in-out; /* アニメーションの動き指定（徐々に早く）*/
    animation-iteration-count: infinite;
    left: 3%;
  }
  .cta-entry .wrapper .inner .factor .button:after {
    bottom: 105%;
  }
  @keyframes cta-entry-button-updown {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-25px);
    }
    100% {
      transform: translateY(0);
    }
  }
  .cta-entry .wrapper .inner .factor .button a {
    padding: 20px 0 20px 0;
  }
  .cta-entry .wrapper .inner .factor .button a .circle {
    top: 50%;
    left: -7%;
    transform: translate(0, -50%);
    width: 25vw;
    height: 25vw;
    border-radius: 50%;
  }
  .cta-entry .wrapper .inner .factor .button a .circle .cover {
    text-align: center;
  }
  .cta-entry .wrapper .inner .factor .button a .circle .cover .sub {
    font-size: 3.5vw;
    padding: 0 10px 0 10px;
    margin: -10px 0 0 0;
  }
  .cta-entry .wrapper .inner .factor .button a .circle .cover .main .big {
    line-height: 1;
    font-size: 11vw;
    margin: -3px 3px 0 0;
  }
  .cta-entry .wrapper .inner .factor .button a .circle .cover .main .small {
    font-size: 4vw;
  }
  .cta-entry .wrapper .inner .factor .button a .circle .cover .semi {
    font-size: 4vw;
    margin: -5px 0 0 0;
  }
  .cta-entry .wrapper .inner .factor .button a .catch {
    font-size: 5.7vw;
    padding: 0 0 0 35px;
  }
  .cta-entry .wrapper .inner .factor .button a .arrow {
    top: 50%;
    right: 15px;
    width: 6vw;
  }
  .cta-entry .wrapper .inner .factor .button a .arrow img {
    width: 100%;
    height: auto;
  }
  .cta-entry .wrapper .inner .hosoku {
    max-width: 94%;
    margin: 20px auto 0;
  }
  .cta-entry .wrapper .inner .hosoku .sentence p {
    text-align: center;
    font-size: 3vw;
    line-height: 1.8;
    padding: 10px 0 10px 0;
  }
} /* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □   

◆	Stylesheet: さらに刻んで320pxまでのモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
/* 320px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
.charge_container {
  margin: 3% auto;
}
@media screen and (max-width: 768px) {
  .charge_container {
    margin: 5% auto;
  }
}

.charge_list {
  font-weight: bold;
  text-align: center;
  width: 100%;
}
.charge_list table {
  width: 100%;
  border-collapse: collapse;
  border: 3px solid #e95512;
  table-layout: fixed;
}
.charge_list th,
.charge_list td {
  font-family: nitalago-ruika, sans-serif;
  font-size: 24px;
  border: 2px solid #e95512;
  padding: 1%;
}
@media screen and (max-width: 1200px) {
  .charge_list th,
  .charge_list td {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .charge_list th,
  .charge_list td {
    font-size: 12px;
    border-width: 1px;
  }
}
@media screen and (max-width: 540px) {
  .charge_list th,
  .charge_list td {
    font-size: 10px;
  }
}
.charge_list th span,
.charge_list td span {
  font-size: 18px;
}
@media screen and (max-width: 1200px) {
  .charge_list th span,
  .charge_list td span {
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  .charge_list th span,
  .charge_list td span {
    font-size: 11px;
  }
}
@media screen and (max-width: 540px) {
  .charge_list th span,
  .charge_list td span {
    font-size: 10px;
  }
}
.charge_list th {
  background-color: #ddd;
  letter-spacing: 2px;
}
.charge_list th span {
  display: block;
}
.charge_list td {
  letter-spacing: -0.5px;
}
.charge_list td span {
  display: block;
}
.charge_list .bg_first_col {
  background-color: #fedc9b;
  border-bottom: #fff;
}
.charge_list .br_charge_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .charge_list .br_charge_sp {
    display: block;
  }
}

.ann_wrapper {
  background-color: #fefae7;
  width: 95%;
  margin: 0 auto;
  padding: 1% 0 5%;
}

.ann_title {
  width: 50%;
  margin: 2% auto 1%;
  max-width: 600px;
}
@media screen and (max-width: 768px) {
  .ann_title {
    margin-top: 4%;
    width: 90%;
  }
}
.ann_title img {
  width: 100%;
}

/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 INTRODUCTION 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
.introduction .wrapper {
  padding: 50px 0 50px 0;
}
.introduction .wrapper .title h3 {
  text-align: center;
}
.introduction .wrapper .title h3 .cover {
  display: inline-block;
  border: solid 3px #ec7d10;
  border-radius: 100px;
  padding: 5px 30px 5px 30px;
  color: #e95513;
  font-size: 26px;
}
.introduction .wrapper .title h3 .cover span {
  color: #ec7d10;
}
.introduction .wrapper .title h2 .cover {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0 0 0;
}
.introduction .wrapper .title h2 .cover .logo {
  line-height: 0;
  width: 250px;
}
.introduction .wrapper .title h2 .cover .logo img {
  width: 100%;
  height: auto;
}
.introduction .wrapper .title h2 .cover .catch {
  font-family: nitalago-ruika, sans-serif;
  font-weight: 100;
  font-style: normal;
  color: #ec5a24;
  font-size: 34px;
}
.introduction .wrapper .inner {
  padding: 50px 0 0 0;
}
.introduction .wrapper .inner .box {
  display: flex;
  max-width: 1480px;
  align-items: stretch;
  margin: 0 auto 0;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.introduction .wrapper .inner .box .thumb {
  line-height: 0;
  width: 45%;
}
.introduction .wrapper .inner .box .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.introduction .wrapper .inner .box .text {
  width: 55%;
  background: #e98919;
}
.introduction .wrapper .inner .box .text h3 {
  background: #d35611;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 20px 20px 20px;
}
.introduction .wrapper .inner .box .text h3 .icon {
  line-height: 0;
  width: 150px;
}
.introduction .wrapper .inner .box .text h3 .icon img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}
.introduction .wrapper .inner .box .text h3 .catch {
  font-family: zen-maru-gothic, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #ffeeb4;
  font-size: 40px;
  padding: 0 0 0 30px;
}
.introduction .wrapper .inner .box .text .sentence {
  padding: 25px 10px 25px 40px;
}
.introduction .wrapper .inner .box .text .sentence p {
  color: #3a0303;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 1px;
  font-size: 20px;
  padding: 10px 0 10px 0;
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .introduction .wrapper {
    padding: 50px 0 50px 0;
  }
  .introduction .wrapper .title h3 {
    text-align: center;
  }
  .introduction .wrapper .title h3 .cover {
    display: inline-block;
    border-radius: 100px;
    padding: 5px 30px 5px 30px;
    font-size: 26px;
  }
  .introduction .wrapper .title h2 .cover {
    margin: 30px 0 0 0;
  }
  .introduction .wrapper .title h2 .cover .logo {
    line-height: 0;
    width: 250px;
  }
  .introduction .wrapper .title h2 .cover .logo img {
    width: 100%;
    height: auto;
  }
  .introduction .wrapper .title h2 .cover .catch {
    font-size: 34px;
  }
  .introduction .wrapper .inner {
    padding: 50px 0 0 0;
  }
  .introduction .wrapper .inner .box {
    display: block;
    max-width: 85%;
    margin: 0 auto 0;
    box-shadow: rgba(100, 100, 111, 0) 0px 7px 29px 0px;
  }
  .introduction .wrapper .inner .box .thumb {
    line-height: 0;
    width: 100%;
    position: relative;
    z-index: 1;
    height: 550px;
    overflow: hidden;
  }
  .introduction .wrapper .inner .box .thumb img {
    width: 100%;
    height: auto;
    transform: translate(0, -20%);
  }
  .introduction .wrapper .inner .box .text {
    width: 90%;
    margin: -150px auto 0;
    position: relative;
    z-index: 2;
    opacity: 0.95;
  }
  .introduction .wrapper .inner .box .text h3 {
    padding: 20px 20px 20px 20px;
  }
  .introduction .wrapper .inner .box .text h3 .icon {
    line-height: 0;
    width: 150px;
  }
  .introduction .wrapper .inner .box .text h3 .icon img {
    width: 100%;
    height: auto;
    border-radius: 50%;
  }
  .introduction .wrapper .inner .box .text h3 .catch {
    font-size: 40px;
    padding: 0 0 0 30px;
  }
  .introduction .wrapper .inner .box .text .sentence {
    padding: 25px 40px 25px 40px;
  }
  .introduction .wrapper .inner .box .text .sentence p {
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 1px;
    font-size: 20px;
    padding: 10px 0 10px 0;
  }
} /* 1024px～1280px responsive-close



/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .introduction .wrapper {
    padding: 50px 0 50px 0;
  }
  .introduction .wrapper .title h3 {
    text-align: center;
  }
  .introduction .wrapper .title h3 .cover {
    display: inline-block;
    border-radius: 100px;
    padding: 5px 30px 5px 30px;
    font-size: 26px;
  }
  .introduction .wrapper .title h2 .cover {
    margin: 30px 0 0 0;
  }
  .introduction .wrapper .title h2 .cover .logo {
    line-height: 0;
    width: 250px;
  }
  .introduction .wrapper .title h2 .cover .logo img {
    width: 100%;
    height: auto;
  }
  .introduction .wrapper .title h2 .cover .catch {
    font-size: 34px;
  }
  .introduction .wrapper .inner {
    padding: 50px 0 0 0;
  }
  .introduction .wrapper .inner .box {
    display: block;
    max-width: 100%;
    margin: 0 auto 0;
    box-shadow: rgba(100, 100, 111, 0) 0px 7px 29px 0px;
  }
  .introduction .wrapper .inner .box .thumb {
    line-height: 0;
    width: 100%;
    position: relative;
    z-index: 1;
    height: 550px;
    overflow: hidden;
  }
  .introduction .wrapper .inner .box .thumb img {
    width: 100%;
    height: auto;
    transform: translate(0, 0%);
  }
  .introduction .wrapper .inner .box .text {
    width: 90%;
    margin: -125px auto 0;
    position: relative;
    z-index: 2;
    opacity: 0.95;
  }
  .introduction .wrapper .inner .box .text h3 {
    padding: 20px 20px 20px 20px;
  }
  .introduction .wrapper .inner .box .text h3 .icon {
    line-height: 0;
    width: 16vw;
  }
  .introduction .wrapper .inner .box .text h3 .icon img {
    width: 100%;
    height: auto;
    border-radius: 50%;
  }
  .introduction .wrapper .inner .box .text h3 .catch {
    font-size: 4.5vw;
    padding: 0 0 0 25px;
  }
  .introduction .wrapper .inner .box .text .sentence {
    padding: 25px 40px 25px 40px;
  }
  .introduction .wrapper .inner .box .text .sentence p {
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 1px;
    font-size: 2.5vw;
    padding: 10px 0 10px 0;
  }
} /* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .introduction .wrapper {
    padding: 50px 0 50px 0;
  }
  .introduction .wrapper .title h3 .cover {
    padding: 5px 30px 5px 30px;
    font-size: 5vw;
  }
  .introduction .wrapper .title h2 .cover {
    margin: 30px 0 0 0;
  }
  .introduction .wrapper .title h2 .cover .logo {
    line-height: 0;
    width: 45vw;
  }
  .introduction .wrapper .title h2 .cover .logo img {
    width: 100%;
    height: auto;
  }
  .introduction .wrapper .title h2 .cover .catch {
    font-size: 6vw;
  }
  .introduction .wrapper .inner {
    padding: 50px 0 0 0;
  }
  .introduction .wrapper .inner .box {
    display: block;
  }
  .introduction .wrapper .inner .box .thumb {
    line-height: 0;
    width: 100%;
  }
  .introduction .wrapper .inner .box .thumb img {
    width: 100%;
    height: auto;
  }
  .introduction .wrapper .inner .box .text {
    width: 100%;
  }
  .introduction .wrapper .inner .box .text h3 {
    padding: 20px 20px 20px 20px;
  }
  .introduction .wrapper .inner .box .text h3 .icon {
    line-height: 0;
    width: 20vw;
  }
  .introduction .wrapper .inner .box .text h3 .icon img {
    width: 100%;
    height: auto;
    border-radius: 50%;
  }
  .introduction .wrapper .inner .box .text h3 .catch {
    width: calc(100% - 20vw);
    font-size: 6vw;
    padding: 0 0 0 10px;
  }
  .introduction .wrapper .inner .box .text .sentence {
    padding: 30px 40px 30px 40px;
  }
  .introduction .wrapper .inner .box .text .sentence p {
    line-height: 2;
    letter-spacing: 1px;
    font-size: 4vw;
    padding: 10px 0 10px 0;
  }
} /* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □   

◆	Stylesheet: さらに刻んで320pxまでのモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
/* 320px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 TITLE04-01 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
.title04-01 {
  overflow: hidden;
}
.title04-01 .en {
  font-size: 90px;
  color: rgb(99, 89, 89);
  line-height: 1;
  font-family: futura-pt-bold, sans-serif;
  font-weight: 700;
  vertical-align: top;
  position: relative;
  top: 20px;
  letter-spacing: 6px;
  text-align: center;
}
.title04-01 h2 {
  width: 100%;
  padding: 20px 0;
  background: rgb(99, 89, 89);
  overflow: hidden;
  color: #fff;
  position: relative;
  z-index: 1;
}
.title04-01 h2:before, .title04-01 h2:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  z-index: 1;
}
.title04-01 h2:before {
  border-width: 200px 200px 0 0;
  border-color: rgb(71, 71, 71) transparent transparent transparent;
  top: 0;
  left: 0;
}
.title04-01 h2:after {
  border-width: 0 200px 200px 0;
  border-color: transparent rgb(71, 71, 71) transparent transparent;
  top: 0;
  right: 0;
}
.title04-01 h2 .semi {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}
.title04-01 h2 .semi .border {
  width: 100px;
  height: 2px;
  background: #fff;
}
.title04-01 h2 .semi .cover {
  font-family: nitalago-ruika, sans-serif;
  font-weight: 100;
  font-style: normal;
  font-size: 22px;
  text-align: center;
  padding: 10px 20px 10px 20px;
  position: relative;
  z-index: 3;
}
.title04-01 h2 .catch {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  line-height: 1;
}
.title04-01 h2 .catch .image {
  width: 200px;
  padding: 0 10px 0 0;
  position: relative;
  z-index: 3;
}
.title04-01 h2 .catch .image img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 3;
  border-radius: 100%;
  border: solid 5px rgb(71, 71, 71);
}
.title04-01 h2 .catch .cover {
  display: flex;
  align-items: center;
  justify-content: center;
}
.title04-01 h2 .catch .cover .text {
  font-family: nitalago-ruika, sans-serif;
  font-weight: 100;
  font-style: normal;
  font-size: 45px;
  text-align: center;
  padding: 0 20px 0 10px;
  line-height: 1.3;
  position: relative;
  z-index: 5;
}
.title04-01 h2 .catch .cover .icon {
  line-height: 0;
  width: 150px;
  font-weight: 900;
  position: relative;
  top: -5px;
  z-index: 3;
}
.title04-01 h2 .catch .cover .icon img {
  width: 100%;
  height: auto;
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
/* 1024px～1280px responsive-close



/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .title04-01 .en {
    font-size: 9vw;
    line-height: 1;
    font-weight: 700;
    position: relative;
    top: 20px;
    letter-spacing: 6px;
  }
  .title04-01 h2 {
    width: 100%;
  }
  .title04-01 h2:before, .title04-01 h2:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    z-index: 1;
  }
  .title04-01 h2:before {
    border-width: 200px 200px 0 0;
    border-color: rgb(71, 71, 71) transparent transparent transparent;
    top: 0;
    left: 0;
  }
  .title04-01 h2:after {
    border-width: 0 200px 200px 0;
    border-color: transparent rgb(71, 71, 71) transparent transparent;
    top: 0;
    right: 0;
  }
  .title04-01 h2 .semi {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  .title04-01 h2 .semi .border {
    width: 100px;
    height: 2px;
    background: #fff;
  }
  .title04-01 h2 .semi .cover {
    font-family: nitalago-ruika, sans-serif;
    font-weight: 100;
    font-style: normal;
    font-size: 22px;
    text-align: center;
    padding: 10px 20px 10px 20px;
    position: relative;
    z-index: 3;
  }
  .title04-01 h2 .catch {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    line-height: 1;
  }
  .title04-01 h2 .catch .image {
    width: 19vw;
    padding: 0 10px 0 0;
    position: relative;
    z-index: 3;
  }
  .title04-01 h2 .catch .image img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 3;
    border-radius: 100%;
    border: solid 5px rgb(71, 71, 71);
  }
  .title04-01 h2 .catch .cover {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .title04-01 h2 .catch .cover .text {
    font-size: 5.5vw;
    text-align: center;
    padding: 0 20px 0 10px;
    line-height: 1.3;
    position: relative;
    z-index: 5;
  }
  .title04-01 h2 .catch .cover .icon {
    line-height: 0;
    width: 150px;
    font-weight: 900;
    position: relative;
    top: -5px;
    z-index: 3;
  }
  .title04-01 h2 .catch .cover .icon img {
    width: 100%;
    height: auto;
  }
} /* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .title04-01 .en {
    font-size: 13vw;
    line-height: 1;
    top: 17px;
    letter-spacing: 6px;
  }
  .title04-01 h2:before, .title04-01 h2:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
  }
  .title04-01 h2:before {
    border-width: 30vw 30vw 0 0;
    top: 0;
    left: 0;
  }
  .title04-01 h2:after {
    border-width: 0 30vw 30vw 0;
    top: 0;
    right: 0;
  }
  .title04-01 h2 .semi {
    display: flex;
  }
  .title04-01 h2 .semi .border {
    width: 10vw;
    height: 2px;
  }
  .title04-01 h2 .semi .cover {
    font-size: 5.25vw;
    padding: 10px 20px 10px 20px;
  }
  .title04-01 h2 .catch {
    display: flex;
  }
  .title04-01 h2 .catch .image {
    width: 20vw;
    margin: 0 auto 0;
    padding: 0 0px 0 0;
    position: relative;
    z-index: 3;
  }
  .title04-01 h2 .catch .image img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 3;
    border-radius: 100%;
  }
  .title04-01 h2 .catch .cover {
    display: flex;
    flex-direction: row-reverse;
  }
  .title04-01 h2 .catch .cover .text {
    font-size: 7vw;
    text-align: center;
    padding: 0 0px 0 5px;
    line-height: 1.3;
    position: relative;
    z-index: 5;
  }
  .title04-01 h2 .catch .cover .icon {
    line-height: 0;
    width: 20vw;
    top: -5px;
    z-index: 3;
  }
  .title04-01 h2 .catch .cover .icon img {
    width: 100%;
    height: auto;
  }
} /* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □   

◆	Stylesheet: さらに刻んで320pxまでのモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
/* 320px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/* 基本設定 */
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 TARGETING 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
.targeting {
  margin: 0px 0 0 0;
}
.targeting .wrapper {
  position: relative;
  background: linear-gradient(90deg, #dbdbdb 0%, #cccccc 100%);
}
.targeting .wrapper .inner .box-wrapper {
  max-width: 1280px;
  margin: 10px auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  padding: 0 0 30px 0;
}
.targeting .wrapper .inner .box-wrapper .box {
  width: 48.5%;
  background: rgb(103, 103, 103);
  margin: 30px 3% 0 0;
  padding: 0px 0px 0px 0px;
  box-shadow: rgba(58, 38, 1, 0.2) 1.95px 1.95px 2.6px, 0 0 0 2px #fff inset;
  position: relative;
  border: solid 3px rgb(103, 103, 103);
  display: flex;
  align-items: center;
}
.targeting .wrapper .inner .box-wrapper .box .inside {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.targeting .wrapper .inner .box-wrapper .box .inside .text {
  display: flex;
  align-items: center;
  width: calc(100% - 0px);
  padding: 20px 30px 20px 30px;
}
.targeting .wrapper .inner .box-wrapper .box .inside .text .icon {
  width: 55px;
  line-height: 0;
  margin: 0 0px 0 0;
  padding: 0 20px 0 0;
}
.targeting .wrapper .inner .box-wrapper .box .inside .text .icon img {
  width: 100%;
  height: auto;
}
.targeting .wrapper .inner .box-wrapper .box .inside .text .semi {
  font-family: zen-maru-gothic, sans-serif;
  font-weight: 700;
  font-style: normal;
  width: calc(100% - 55px);
  color: #fff;
  padding: 0 0 0 20px;
  font-weight: 700;
  font-size: 23px;
  letter-spacing: 1px;
  position: relative;
}
.targeting .wrapper .inner .box-wrapper .box .inside .text .semi::before, .targeting .wrapper .inner .box-wrapper .box .inside .text .semi::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0%;
  transform: translate(0, 0%);
}
.targeting .wrapper .inner .box-wrapper .box .inside .text .semi::before {
  width: 2px;
  height: 100%;
  background: #fff;
}
.targeting .wrapper .inner .box-wrapper .box .inside .text .semi::after {
  width: 2px;
  height: 50%;
  background: rgb(53, 46, 46);
}
.targeting .wrapper .inner .box-wrapper .box:nth-child(2n) {
  margin: 30px 0 0 0;
}
.targeting .wrapper .explain {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  margin: 0px 0 0 0;
  background: linear-gradient(90deg, #fcffe9 0%, #fff2c3 100%);
  padding: 50px 0 50px 0;
}
.targeting .wrapper .explain .thumb {
  width: 400px;
  margin: 0 60px 0 0;
  position: relative;
}
.targeting .wrapper .explain .thumb:before {
  content: "";
  position: absolute;
  width: 95%;
  height: 95%;
  border: solid 3px #ec7e24;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.targeting .wrapper .explain .thumb img {
  position: relative;
  z-index: 1;
  display: block;
  border-radius: 50%;
  width: 100%;
  height: auto;
}
.targeting .wrapper .explain .text .semi .cover {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: solid 3px #fff;
  box-shadow: 0 0 0 3px #ec7e24 inset;
  border-radius: 100px;
  padding: 5px 40px 5px 40px;
}
.targeting .wrapper .explain .text .semi .cover .icon {
  line-height: 0;
  width: 50px;
  margin: 0 10px 0 0;
}
.targeting .wrapper .explain .text .semi .cover .icon img {
  width: 100%;
  height: auto;
}
.targeting .wrapper .explain .text .semi .cover .catch {
  font-family: zen-maru-gothic, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-weight: 700;
  color: #ec7e24;
  line-height: 1.4;
  font-size: 30px;
}
.targeting .wrapper .explain .text .sub {
  margin: 10px 0 0 0;
  line-height: 1.3;
}
.targeting .wrapper .explain .text .sub .line {
  display: inline-block;
  background: white;
  color: #ec7e24;
  box-shadow: 6px 6px 0 0 #e06c12;
  font-size: 40px;
  margin: 20px 0 0 0;
  padding: 3px 25px 3px 25px;
  font-weight: 900;
}
.targeting .wrapper .explain .text .sub .line img {
  width: 375px;
  height: auto;
  padding: 0 3px 0 0;
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .targeting {
    margin: 0px 0 0 0;
  }
  .targeting .wrapper {
    position: relative;
    padding: 0 0 0px 0;
  }
  .targeting .wrapper .inner .box-wrapper {
    max-width: 95%;
    margin: 10px auto 0;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    padding: 0 0 30px 0;
  }
  .targeting .wrapper .inner .box-wrapper .box {
    width: 49%;
    margin: 30px 2% 0 0;
    padding: 0px 0px 0px 0px;
    box-shadow: rgba(58, 38, 1, 0.2) 1.95px 1.95px 2.6px, 0 0 0 2px #fff inset;
    position: relative;
    display: flex;
    align-items: center;
  }
  .targeting .wrapper .inner .box-wrapper .box .inside {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .targeting .wrapper .inner .box-wrapper .box .inside .text {
    display: flex;
    align-items: center;
    width: calc(100% - 0px);
    padding: 20px 30px 20px 30px;
  }
  .targeting .wrapper .inner .box-wrapper .box .inside .text .icon {
    width: 5vw;
    line-height: 0;
    margin: 0 0px 0 0;
    padding: 0 20px 0 0;
  }
  .targeting .wrapper .inner .box-wrapper .box .inside .text .icon img {
    width: 100%;
    height: auto;
  }
  .targeting .wrapper .inner .box-wrapper .box .inside .text .semi {
    width: calc(100% - 5vw);
    padding: 0 0 0 20px;
    font-size: 1.85vw;
    letter-spacing: 1px;
    position: relative;
  }
  .targeting .wrapper .inner .box-wrapper .box .inside .text .semi::before, .targeting .wrapper .inner .box-wrapper .box .inside .text .semi::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0%;
    transform: translate(0, 0%);
  }
  .targeting .wrapper .inner .box-wrapper .box .inside .text .semi::before {
    width: 2px;
    height: 100%;
    background: #fff;
  }
  .targeting .wrapper .inner .box-wrapper .box .inside .text .semi::after {
    width: 2px;
    height: 50%;
  }
  .targeting .wrapper .inner .box-wrapper .box:nth-child(2n) {
    margin: 30px 0 0 0;
  }
  .targeting .wrapper .additional {
    margin: 60px 0 0 0;
  }
  .targeting .wrapper .additional .thumb {
    width: 27.5vw;
    margin: 0 0 0 30px;
  }
  .targeting .wrapper .additional .thumb:before {
    width: 95%;
    height: 95%;
  }
  .targeting .wrapper .additional .text .mark .cover {
    padding: 3px 20px 3px 20px;
    font-size: 2vw;
  }
  .targeting .wrapper .additional .text .sentence {
    margin: 30px 0 0 0;
    letter-spacing: 2px;
    font-size: 4vw;
  }
} /* 1024px～1280px responsive-close



/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .targeting {
    margin: 0px 0 0 0;
  }
  .targeting .wrapper {
    position: relative;
    padding: 0 0 0px 0;
  }
  .targeting .wrapper .inner .box-wrapper {
    max-width: 95%;
    margin: 0px auto 0;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    padding: 0 0 30px 0;
  }
  .targeting .wrapper .inner .box-wrapper .box {
    width: 49%;
    margin: 30px 2% 0 0;
    padding: 0px 0px 0px 0px;
    position: relative;
    display: flex;
    align-items: center;
  }
  .targeting .wrapper .inner .box-wrapper .box .inside {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .targeting .wrapper .inner .box-wrapper .box .inside .text {
    display: flex;
    align-items: center;
    width: calc(100% - 0px);
    padding: 20px 30px 20px 30px;
  }
  .targeting .wrapper .inner .box-wrapper .box .inside .text .icon {
    width: 6vw;
    line-height: 0;
    margin: 0 0px 0 0;
    padding: 0 20px 0 0;
  }
  .targeting .wrapper .inner .box-wrapper .box .inside .text .icon img {
    width: 100%;
    height: auto;
  }
  .targeting .wrapper .inner .box-wrapper .box .inside .text .semi {
    width: calc(100% - 6vw);
    padding: 0 0 0 20px;
    font-size: 2.25vw;
    letter-spacing: 1px;
    position: relative;
  }
  .targeting .wrapper .inner .box-wrapper .box .inside .text .semi::before, .targeting .wrapper .inner .box-wrapper .box .inside .text .semi::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0%;
    transform: translate(0, 0%);
  }
  .targeting .wrapper .inner .box-wrapper .box .inside .text .semi::before {
    width: 2px;
    height: 100%;
    background: #fff;
  }
  .targeting .wrapper .inner .box-wrapper .box .inside .text .semi::after {
    width: 2px;
    height: 50%;
  }
  .targeting .wrapper .inner .box-wrapper .box:nth-child(2n) {
    margin: 30px 0 0 0;
  }
  .targeting .wrapper .additional {
    margin: 60px 0 0 0;
  }
  .targeting .wrapper .additional .thumb {
    width: 32.5vw;
    margin: 0 0 0 30px;
  }
  .targeting .wrapper .additional .thumb:before {
    width: 95%;
    height: 95%;
  }
  .targeting .wrapper .additional .text .mark .cover {
    padding: 3px 20px 3px 20px;
    font-size: 2.5vw;
  }
  .targeting .wrapper .additional .text .sentence {
    margin: 30px 0 0 0;
    letter-spacing: 2px;
    font-size: 4.75vw;
  }
} /* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .targeting {
    margin: 0px 0 0 0;
  }
  .targeting .wrapper {
    position: relative;
    padding: 0 0 0px 0;
  }
  .targeting .wrapper .inner .box-wrapper {
    max-width: 92%;
    margin: 10px auto 0;
    padding: 0 0 0px 0;
  }
  .targeting .wrapper .inner .box-wrapper .box {
    width: 48.5%;
    margin: 20px 3% 0 0;
    padding: 0px 0px 0px 0px;
  }
  .targeting .wrapper .inner .box-wrapper .box .inside {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .targeting .wrapper .inner .box-wrapper .box .inside .text {
    display: flex;
    align-items: center;
    width: calc(100% - 0px);
    padding: 10px 15px 10px 15px;
  }
  .targeting .wrapper .inner .box-wrapper .box .inside .text .icon {
    width: 7vw;
    line-height: 0;
    margin: 0 0px 0 0;
    padding: 0 10px 0 0;
  }
  .targeting .wrapper .inner .box-wrapper .box .inside .text .icon img {
    width: 100%;
    height: auto;
  }
  .targeting .wrapper .inner .box-wrapper .box .inside .text .semi {
    width: calc(100% - 7vw);
    padding: 0 0 0 10px;
    font-size: 3.7vw;
    letter-spacing: 1px;
    position: relative;
  }
  .targeting .wrapper .inner .box-wrapper .box .inside .text .semi::before, .targeting .wrapper .inner .box-wrapper .box .inside .text .semi::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0%;
    transform: translate(0, 0%);
  }
  .targeting .wrapper .inner .box-wrapper .box .inside .text .semi::before {
    width: 2px;
    height: 100%;
    background: #fff;
  }
  .targeting .wrapper .inner .box-wrapper .box .inside .text .semi::after {
    width: 2px;
    height: 50%;
  }
  .targeting .wrapper .inner .box-wrapper .box:nth-child(2n) {
    margin: 20px 0 0 0;
  }
  .targeting .wrapper .explain {
    margin: 34px 0 0 0;
  }
  .targeting .wrapper .explain .thumb {
    width: 77vw;
    margin: 0 auto 0;
    position: relative;
  }
  .targeting .wrapper .explain .thumb:before {
    transform: translate(-50%, -50%);
    border-radius: 50%;
  }
  .targeting .wrapper .explain .thumb img {
    border-radius: 50%;
  }
  .targeting .wrapper .explain .text .semi {
    text-align: center;
  }
  .targeting .wrapper .explain .text .semi .cover {
    border-radius: 100px;
    padding: 5px 20px 5px 20px;
  }
  .targeting .wrapper .explain .text .semi .cover .icon {
    line-height: 0;
    width: 8vw;
    margin: 0 10px 0 0;
  }
  .targeting .wrapper .explain .text .semi .cover .icon img {
    width: 100%;
    height: auto;
  }
  .targeting .wrapper .explain .text .semi .cover .catch {
    font-size: 7vw;
  }
  .targeting .wrapper .explain .text .sub {
    margin: 10px 0 0 0;
    line-height: 1.3;
  }
  .targeting .wrapper .explain .text .sub .line {
    font-size: 6.5vw;
    margin: 15px 0 0 0;
    padding: 3px 25px 3px 25px;
    font-weight: 900;
  }
  .targeting .wrapper .explain .text .sub .line img {
    width: 375px;
    height: auto;
    padding: 0 3px 0 0;
  }
} /* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □   

◆	Stylesheet: さらに刻んで320pxまでのモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
/* 320px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/* 基本設定 */
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 TITLE15-01 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
.title15-01 {
  background: url(../images/title15-01-bg.jpg) no-repeat center center;
  background-size: cover;
  padding: 110px 0 110px 0;
}
.title15-01 h3 {
  text-align: center;
}
.title15-01 h3 .inside {
  display: inline-block;
  background: #fff;
  color: #ec7e24;
  padding: 3px 10px 5px 10px;
  font-family: futura-pt, futura-pt-bold, atten-round-new, sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 2px;
}
.title15-01 h2 {
  text-align: center;
}
.title15-01 h2 .inside {
  font-weight: 700;
  display: inline-block;
  line-height: 1.2;
  background: linear-gradient(90deg, rgba(243, 98, 25, 0.95) 0%, rgba(255, 171, 46, 0.95) 100%);
  color: #fff;
  padding: 5px 20px 8px 20px;
  font-size: 60px;
  letter-spacing: 2px;
  margin: 20px 0 0 0;
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
/* 1024px～1280px responsive-close



/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .title15-01 {
    padding: 80px 0 90px 0;
  }
  .title15-01 h3 .inside {
    padding: 3px 10px 5px 10px;
    font-size: 2.4vw;
  }
  .title15-01 h2 .inside {
    padding: 5px 20px 8px 20px;
    font-size: 5vw;
    letter-spacing: 2px;
    margin: 10px 0 0 0;
  }
} /* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .title15-01 {
    padding: 60px 0 60px 0;
  }
  .title15-01 h3 {
    text-align: center;
  }
  .title15-01 h3 .inside {
    padding: 3px 10px 5px 10px;
    font-size: 4vw;
  }
  .title15-01 h2 {
    text-align: center;
  }
  .title15-01 h2 .inside {
    padding: 5px 15px 8px 15px;
    font-size: 7vw;
    margin: 10px 0 0 0;
  }
} /* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □   

◆	Stylesheet: さらに刻んで320pxまでのモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
/* 320px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/* 基本設定 */
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 POINT 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
#point {
  background: linear-gradient(90deg, #ec7e24 0%, #ec9924 100%);
}
#point .wrapper {
  padding: 50px 0 100px 0;
}
#point .wrapper .inner {
  padding: 0 0 0 0;
}
#point .wrapper .inner .box-wrapper {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1480px;
  margin: 0 auto 0;
  padding: 0 3% 0 3%;
}
#point .wrapper .inner .box-wrapper .box {
  width: 48.5%;
  margin: 30px 3% 0 0;
  background: #fff;
  position: relative;
  padding: 0 0 45px 0;
}
#point .wrapper .inner .box-wrapper .box h4 {
  opacity: 0.875;
}
#point .wrapper .inner .box-wrapper .box h4 .cover .sub {
  text-align: center;
  font-family: nitalago-ruika, sans-serif;
  font-weight: 100;
  font-style: normal;
  color: #ec7e24;
  font-size: 22px;
  line-height: 1;
}
#point .wrapper .inner .box-wrapper .box h4 .cover .main {
  text-align: center;
  line-height: 1;
  color: #ec7e24;
  font-family: "Bebas Neue", cursive;
  font-size: 110px;
}
#point .wrapper .inner .box-wrapper .box .en {
  text-align: center;
  margin: -80px 0 0 0;
}
#point .wrapper .inner .box-wrapper .box .en .cover {
  display: inline-block;
  background: #fff;
  box-shadow: rgba(90, 90, 105, 0.2) 0px 7px 29px 0px;
  font-family: futura-pt-bold, sans-serif;
  font-weight: 700;
  font-style: normal;
  padding: 5px 20px 5px 20px;
}
#point .wrapper .inner .box-wrapper .box .en .cover .line {
  background: linear-gradient(90deg, #f27800, #fac800);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 3px;
  font-size: 20px;
}
#point .wrapper .inner .box-wrapper .box h3 {
  text-align: center;
  margin: -50px 0 0 0;
}
#point .wrapper .inner .box-wrapper .box h3 .cover {
  margin: 10px 0 0 0;
  line-height: 1.35;
}
#point .wrapper .inner .box-wrapper .box h3 .cover .line {
  display: inline-block;
  background: linear-gradient(90deg, #f36219 0%, #ffab2e 100%);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  color: #fff;
  padding: 5px 20px 5px 20px;
  font-size: 36px;
}
#point .wrapper .inner .box-wrapper .box ul {
  list-style: none;
  width: 92%;
  margin: 20px auto 0;
  padding: 25px 25px 25px 25px;
  background: linear-gradient(90deg, #f9fed5 0%, #fff0b9 100%);
}
#point .wrapper .inner .box-wrapper .box ul li {
  border-bottom: solid 1px #dbbf95;
  display: flex;
  padding: 10px 0 10px 0;
}
#point .wrapper .inner .box-wrapper .box ul li .icon {
  line-height: 0;
  width: 30px;
}
#point .wrapper .inner .box-wrapper .box ul li .catch {
  width: calc(100% - 30px);
  font-family: zen-maru-gothic, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #b85532;
  font-size: 20px;
  padding: 0 0 0 10px;
}
#point .wrapper .inner .box-wrapper .box .element {
  padding: 40px 30px 20px 30px;
}
#point .wrapper .inner .box-wrapper .box .element .obi {
  font-family: nitalago-ruika, sans-serif;
  font-weight: 100;
  font-style: normal;
  text-align: center;
  background: #ffcc7b;
  color: #f36219;
  font-size: 24px;
}
#point .wrapper .inner .box-wrapper .box .element .cards {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin: 20px 0 0 0;
}
#point .wrapper .inner .box-wrapper .box .element .cards .card {
  width: 48.5%;
  background: linear-gradient(90deg, #f9fed5 0%, #fff0b9 100%);
  padding: 20px 20px 20px 20px;
}
#point .wrapper .inner .box-wrapper .box .element .cards .card .top {
  display: flex;
  align-items: center;
}
#point .wrapper .inner .box-wrapper .box .element .cards .card .top .icon {
  line-height: 0;
  width: 30%;
}
#point .wrapper .inner .box-wrapper .box .element .cards .card .top h5 {
  width: 70%;
  font-size: 25px;
  margin: 0 0 0 0;
  padding: 0 0 0 20px;
  line-height: 1.2;
  color: #e27640;
}
#point .wrapper .inner .box-wrapper .box .element .cards .card .top h5 .sub {
  font-size: 0.75em;
}
#point .wrapper .inner .box-wrapper .box .element .cards .card table {
  font-family: zen-maru-gothic, sans-serif;
  font-weight: 700;
  font-style: normal;
  width: 100%;
  margin: 20px 0 0 0;
}
#point .wrapper .inner .box-wrapper .box .element .cards .card table th {
  text-align: left;
  background: #e2a140;
  color: #fff;
  padding: 2px 5px 2px 5px;
  width: 31.25%;
  font-size: 14px;
  letter-spacing: -1px;
}
#point .wrapper .inner .box-wrapper .box .element .cards .card table th .small {
  display: block;
  line-height: 1.2;
  font-size: 13px;
}
#point .wrapper .inner .box-wrapper .box .element .cards .card table td {
  text-align: right;
  background: #fff;
  color: #e27640;
  padding: 2px 2px 2px 2px;
  width: 18.75%;
  font-size: 14px;
}
#point .wrapper .inner .box-wrapper .box .sentence {
  width: 92%;
  margin: 20px auto 0;
}
#point .wrapper .inner .box-wrapper .box .sentence p {
  font-weight: 700;
  font-style: normal;
  color: #de6e19;
  letter-spacing: 1px;
  line-height: 2;
  font-size: 18px;
  padding: 0 0 0 10px;
}
#point .wrapper .inner .box-wrapper .box .sentence p .small {
  font-size: 0.8em;
}
#point .wrapper .inner .box-wrapper .box:nth-child(2n-1) h4 {
  position: absolute;
  left: 20px;
  top: 20px;
}
#point .wrapper .inner .box-wrapper .box:nth-child(2n) {
  margin: 30px 0 0 0;
}
#point .wrapper .inner .box-wrapper .box:nth-child(2n) h4 {
  position: absolute;
  right: 20px;
  top: 20px;
}

@media screen and (max-width: 767px) {
  .sp_hidden {
    display: none;
  }
}

.sp_active {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp_active {
    display: block;
  }
}

#swiper-pagination-adjust {
  margin-top: 3%;
}
@media screen and (max-width: 767px) {
  #swiper-pagination-adjust {
    margin-top: 5%;
  }
}
#swiper-pagination-adjust .swiper-container_2 {
  overflow: hidden;
}
#swiper-pagination-adjust .swiper-pagination_2 {
  text-align: center;
  margin-top: 1.5%;
}
#swiper-pagination-adjust .swiper-pagination-bullet {
  margin: 0 1%;
}
#swiper-pagination-adjust .swiper-pagination-bullet-active {
  background: #e2763f;
}
#swiper-pagination-adjust .swiper-slide.swiper-slide-next, #swiper-pagination-adjust .swiper-slide.swiper-slide-prev {
  transform: scale(0.9);
  opacity: 0.6;
  transition: 0.3s;
}
#swiper-pagination-adjust .swiper-slide_common {
  width: 100%;
}
#swiper-pagination-adjust .swiper-slide_common .item_container {
  background: linear-gradient(to left, #fef0ba, #fef0ba 50%, #f9fdd4 100%);
  padding: 3%;
  border-radius: 10px;
}
#swiper-pagination-adjust .swiper-slide_common .item_container table {
  border-spacing: 3px;
  border: 1px;
  text-align: center;
  color: #e2763f;
  font-weight: bold;
  width: 100%;
  font-size: min(1.04vw, 15px);
  font-family: zen-maru-gothic, sans-serif;
}
@media screen and (max-width: 767px) {
  #swiper-pagination-adjust .swiper-slide_common .item_container table {
    font-size: max(11px, 2.93vw);
  }
}
#swiper-pagination-adjust .swiper-slide_common .item_container table .bg_orange {
  background: #e1a13f;
  color: #fff;
}
#swiper-pagination-adjust .swiper-slide_common .item_container table td {
  background: #fff;
}
#swiper-pagination-adjust .swiper-slide_common .top_area {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  #swiper-pagination-adjust .swiper-slide_common .top_area {
    display: block;
  }
}
#swiper-pagination-adjust .swiper-slide_common .top_area .img {
  width: 28%;
  position: relative;
  overflow: hidden;
}
#swiper-pagination-adjust .swiper-slide_common .top_area .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
#swiper-pagination-adjust .swiper-slide_common .top_area .sp_img {
  width: 70%;
  height: 135px;
  margin: 0 auto;
  position: relative;
}
#swiper-pagination-adjust .swiper-slide_common .top_area .sp_img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
#swiper-pagination-adjust .swiper-slide_common .top_area .contents {
  width: 70%;
}
@media screen and (max-width: 767px) {
  #swiper-pagination-adjust .swiper-slide_common .top_area .contents {
    width: 100%;
    margin: 0 auto;
  }
}
#swiper-pagination-adjust .swiper-slide_common .top_area .contents h2 {
  font-size: min(1.66vw, 24px);
  display: flex;
  align-items: center;
  color: #e2763f;
  font-weight: bold;
  font-family: source-han-sans-japanese, sans-serif;
}
@media screen and (max-width: 767px) {
  #swiper-pagination-adjust .swiper-slide_common .top_area .contents h2 {
    justify-content: center;
    margin: 1% auto 3%;
    font-size: min(18px, 4.8vw);
  }
}
#swiper-pagination-adjust .swiper-slide_common .top_area .contents h2 span {
  font-size: min(0.97vw, 14px);
  display: inline-block;
  margin-left: 5%;
}
@media screen and (max-width: 767px) {
  #swiper-pagination-adjust .swiper-slide_common .top_area .contents h2 span {
    font-size: min(11px, 2.93vw);
  }
}
@media screen and (max-width: 767px) {
  #swiper-pagination-adjust .swiper-slide_common .top_area .contents .table_top {
    margin-top: 3%;
  }
}
#swiper-pagination-adjust .swiper-slide_common .top_area .contents .table_top .r_1 th {
  width: 100%;
}
#swiper-pagination-adjust .swiper-slide_common .top_area .contents .table_top .r_2 td {
  width: 100%;
}
#swiper-pagination-adjust .swiper-slide_common .top_area .contents .table_top .r_3 th {
  width: 48%;
}
#swiper-pagination-adjust .swiper-slide_common .top_area .contents .table_top .r_4 td {
  width: 48%;
}
#swiper-pagination-adjust .swiper-slide_common .bottom_area {
  margin-top: 1.5%;
}
#swiper-pagination-adjust .swiper-slide_common .bottom_area .table_bottom .bg_orange {
  background: #e1a13f;
  color: #fff;
}
#swiper-pagination-adjust .swiper-slide_common .bottom_area .table_bottom .r_1 th {
  width: 100%;
}
#swiper-pagination-adjust .swiper-slide_common .bottom_area .table_bottom .r_2 td {
  width: 100%;
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #point .wrapper {
    padding: 15px 0 30px 0;
  }
  #point .wrapper .inner {
    padding: 0 0 0 0;
  }
  #point .wrapper .inner .box-wrapper {
    max-width: 100%;
    margin: 0 auto 0;
    padding: 0 2% 0 2%;
  }
  #point .wrapper .inner .box-wrapper .box {
    width: 49%;
    margin: 30px 2% 0 0;
    padding: 0 0 25px 0;
  }
  #point .wrapper .inner .box-wrapper .box h4 {
    opacity: 0.875;
  }
  #point .wrapper .inner .box-wrapper .box h4 .cover .sub {
    font-size: 2vw;
    line-height: 1;
  }
  #point .wrapper .inner .box-wrapper .box h4 .cover .main {
    font-size: 8vw;
  }
  #point .wrapper .inner .box-wrapper .box .en {
    margin: -65px 0 0 0;
  }
  #point .wrapper .inner .box-wrapper .box .en .cover {
    padding: 5px 20px 5px 20px;
  }
  #point .wrapper .inner .box-wrapper .box .en .cover .line {
    letter-spacing: 3px;
    font-size: 20px;
  }
  #point .wrapper .inner .box-wrapper .box h3 {
    margin: -35px 0 0 0;
  }
  #point .wrapper .inner .box-wrapper .box h3 .cover {
    margin: 10px 0 0 0;
    line-height: 1.35;
  }
  #point .wrapper .inner .box-wrapper .box h3 .cover .line {
    padding: 5px 20px 5px 20px;
    font-size: 3vw;
  }
  #point .wrapper .inner .box-wrapper .box ul {
    width: 92%;
    margin: 20px auto 0;
    padding: 25px 25px 25px 25px;
  }
  #point .wrapper .inner .box-wrapper .box ul li {
    display: flex;
    padding: 10px 0 10px 0;
  }
  #point .wrapper .inner .box-wrapper .box ul li .icon {
    line-height: 0;
    width: 2.5vw;
  }
  #point .wrapper .inner .box-wrapper .box ul li .catch {
    width: calc(100% - 2.5vw);
    font-size: 1.8vw;
    padding: 0 0 0 10px;
  }
  #point .wrapper .inner .box-wrapper .box .element {
    padding: 40px 10px 0px 10px;
  }
  #point .wrapper .inner .box-wrapper .box .element .obi {
    font-family: nitalago-ruika, sans-serif;
    font-weight: 100;
    font-style: normal;
    text-align: center;
    background: #ffcc7b;
    color: #f36219;
    font-size: 24px;
  }
  #point .wrapper .inner .box-wrapper .box .element .cards {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    margin: 20px 0 0 0;
  }
  #point .wrapper .inner .box-wrapper .box .element .cards .card {
    width: 48.5%;
    padding: 20px 10px 20px 10px;
  }
  #point .wrapper .inner .box-wrapper .box .element .cards .card .top {
    display: flex;
    align-items: center;
  }
  #point .wrapper .inner .box-wrapper .box .element .cards .card .top .icon {
    line-height: 0;
    width: 25%;
  }
  #point .wrapper .inner .box-wrapper .box .element .cards .card .top h5 {
    width: 75%;
    font-size: 2vw;
    margin: 0 0 0 0;
    padding: 0 0 0 10px;
    line-height: 1.2;
  }
  #point .wrapper .inner .box-wrapper .box .element .cards .card .top h5 .sub {
    font-size: 0.75em;
  }
  #point .wrapper .inner .box-wrapper .box .element .cards .card table {
    font-family: zen-maru-gothic, sans-serif;
    font-weight: 700;
    font-style: normal;
    width: 100%;
    margin: 20px 0 0 0;
  }
  #point .wrapper .inner .box-wrapper .box .element .cards .card table th {
    padding: 2px 2px 2px 2px;
    width: 31.25%;
    font-size: 1.25vw;
    letter-spacing: -1px;
  }
  #point .wrapper .inner .box-wrapper .box .element .cards .card table th .small {
    line-height: 1.2;
    font-size: 1vw;
  }
  #point .wrapper .inner .box-wrapper .box .element .cards .card table td {
    padding: 2px 2px 2px 2px;
    width: 18.75%;
    font-size: 1.25vw;
  }
  #point .wrapper .inner .box-wrapper .box .sentence {
    width: 92%;
    margin: 20px auto 0;
  }
  #point .wrapper .inner .box-wrapper .box .sentence p {
    letter-spacing: 1px;
    line-height: 2;
    font-size: 1.65vw;
    padding: 0 0 0 10px;
  }
  #point .wrapper .inner .box-wrapper .box .sentence p .small {
    font-size: 0.8em;
  }
  #point .wrapper .inner .box-wrapper .box:nth-child(2n-1) h4 {
    position: absolute;
    left: 20px;
    top: 20px;
  }
  #point .wrapper .inner .box-wrapper .box:nth-child(2n) {
    margin: 30px 0 0 0;
  }
  #point .wrapper .inner .box-wrapper .box:nth-child(2n) h4 {
    position: absolute;
    right: 20px;
    top: 20px;
  }
} /* 1024px～1280px responsive-close



/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #point .wrapper {
    padding: 15px 0 40px 0;
  }
  #point .wrapper .inner {
    padding: 0 0 0 0;
  }
  #point .wrapper .inner .box-wrapper {
    max-width: 100%;
    margin: 0 auto 0;
    padding: 0 2% 0 2%;
  }
  #point .wrapper .inner .box-wrapper .box {
    width: 85%;
    margin: 30px auto 0;
    padding: 0 0 25px 0;
  }
  #point .wrapper .inner .box-wrapper .box h4 {
    opacity: 0.875;
  }
  #point .wrapper .inner .box-wrapper .box h4 .cover .sub {
    font-size: 3vw;
    line-height: 1;
  }
  #point .wrapper .inner .box-wrapper .box h4 .cover .main {
    font-size: 9vw;
  }
  #point .wrapper .inner .box-wrapper .box .en {
    margin: -65px 0 0 0;
  }
  #point .wrapper .inner .box-wrapper .box .en .cover {
    padding: 5px 20px 5px 20px;
  }
  #point .wrapper .inner .box-wrapper .box .en .cover .line {
    letter-spacing: 3px;
    font-size: 20px;
  }
  #point .wrapper .inner .box-wrapper .box h3 {
    margin: -45px 0 0 0;
  }
  #point .wrapper .inner .box-wrapper .box h3 .cover {
    margin: 10px 0 0 0;
    line-height: 1.35;
  }
  #point .wrapper .inner .box-wrapper .box h3 .cover .line {
    padding: 5px 20px 5px 20px;
    font-size: 4.25vw;
  }
  #point .wrapper .inner .box-wrapper .box ul {
    width: 92%;
    margin: 20px auto 0;
    padding: 25px 25px 25px 25px;
  }
  #point .wrapper .inner .box-wrapper .box ul li {
    display: flex;
    padding: 10px 0 10px 0;
  }
  #point .wrapper .inner .box-wrapper .box ul li .icon {
    line-height: 0;
    width: 3.5vw;
  }
  #point .wrapper .inner .box-wrapper .box ul li .catch {
    width: calc(100% - 2.5vw);
    font-size: 2.5vw;
    padding: 0 0 0 10px;
  }
  #point .wrapper .inner .box-wrapper .box .element {
    padding: 40px 10px 0px 10px;
  }
  #point .wrapper .inner .box-wrapper .box .element .obi {
    font-family: nitalago-ruika, sans-serif;
    font-weight: 100;
    font-style: normal;
    text-align: center;
    background: #ffcc7b;
    color: #f36219;
    font-size: 24px;
  }
  #point .wrapper .inner .box-wrapper .box .element .cards {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    margin: 20px 0 0 0;
  }
  #point .wrapper .inner .box-wrapper .box .element .cards .card {
    width: 48.5%;
    padding: 20px 10px 20px 10px;
  }
  #point .wrapper .inner .box-wrapper .box .element .cards .card .top {
    display: flex;
    align-items: center;
  }
  #point .wrapper .inner .box-wrapper .box .element .cards .card .top .icon {
    line-height: 0;
    width: 35%;
  }
  #point .wrapper .inner .box-wrapper .box .element .cards .card .top h5 {
    width: 65%;
    font-size: 3vw;
    margin: 0 0 0 0;
    padding: 0 0 0 10px;
    line-height: 1.2;
  }
  #point .wrapper .inner .box-wrapper .box .element .cards .card .top h5 .sub {
    font-size: 0.75em;
  }
  #point .wrapper .inner .box-wrapper .box .element .cards .card table {
    font-family: zen-maru-gothic, sans-serif;
    font-weight: 700;
    font-style: normal;
    width: 100%;
    margin: 20px 0 0 0;
  }
  #point .wrapper .inner .box-wrapper .box .element .cards .card table th {
    padding: 2px 2px 2px 2px;
    width: 30%;
    font-size: 2vw;
    letter-spacing: -1px;
  }
  #point .wrapper .inner .box-wrapper .box .element .cards .card table th .small {
    line-height: 1.2;
    font-size: 1.25vw;
  }
  #point .wrapper .inner .box-wrapper .box .element .cards .card table td {
    padding: 2px 2px 2px 2px;
    width: 20%;
    font-size: 2vw;
  }
  #point .wrapper .inner .box-wrapper .box .sentence {
    width: 92%;
    margin: 20px auto 0;
  }
  #point .wrapper .inner .box-wrapper .box .sentence p {
    letter-spacing: 1px;
    line-height: 2;
    font-size: 2.25vw;
    padding: 0 0 0 10px;
  }
  #point .wrapper .inner .box-wrapper .box .sentence p .small {
    font-size: 0.8em;
  }
  #point .wrapper .inner .box-wrapper .box:nth-child(2n-1) h4 {
    position: absolute;
    left: 20px;
    top: 20px;
  }
  #point .wrapper .inner .box-wrapper .box:nth-child(2n) {
    margin: 30px 0 0 0;
  }
  #point .wrapper .inner .box-wrapper .box:nth-child(2n) h4 {
    position: absolute;
    right: 20px;
    top: 20px;
  }
} /* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  #point .wrapper {
    padding: 10px 0 60px 0;
  }
  #point .wrapper .inner {
    padding: 0 0 0 0;
  }
  #point .wrapper .inner .box-wrapper {
    display: block;
    max-width: 100%;
    padding: 0 3% 0 3%;
  }
  #point .wrapper .inner .box-wrapper .box {
    width: 100%;
    margin: 30px 0% 0 0;
    padding: 0 0 35px 0;
  }
  #point .wrapper .inner .box-wrapper .box h4 {
    opacity: 0.875;
  }
  #point .wrapper .inner .box-wrapper .box h4 .cover .sub {
    font-size: 4vw;
    line-height: 1;
  }
  #point .wrapper .inner .box-wrapper .box h4 .cover .main {
    font-size: 15vw;
  }
  #point .wrapper .inner .box-wrapper .box .en {
    margin: -70px 0 0 0;
  }
  #point .wrapper .inner .box-wrapper .box .en .cover {
    padding: 5px 20px 5px 20px;
  }
  #point .wrapper .inner .box-wrapper .box .en .cover .line {
    font-size: 4vw;
  }
  #point .wrapper .inner .box-wrapper .box h3 {
    text-align: center;
  }
  #point .wrapper .inner .box-wrapper .box h3 .cover {
    margin: 10px 0 0 0;
    line-height: 1.35;
  }
  #point .wrapper .inner .box-wrapper .box h3 .cover .line {
    padding: 5px 10px 5px 10px;
    font-size: 6.25vw;
  }
  #point .wrapper .inner .box-wrapper .box ul {
    list-style: none;
    width: 92%;
    margin: 20px auto 0;
    padding: 25px 25px 25px 25px;
  }
  #point .wrapper .inner .box-wrapper .box ul li {
    display: flex;
    padding: 10px 0 10px 0;
  }
  #point .wrapper .inner .box-wrapper .box ul li .icon {
    line-height: 0;
    width: 6vw;
  }
  #point .wrapper .inner .box-wrapper .box ul li .catch {
    width: calc(100% - 30px);
    font-size: 4.5vw;
    padding: 0 0 0 10px;
  }
  #point .wrapper .inner .box-wrapper .box .element {
    padding: 30px 20px 10px 20px;
  }
  #point .wrapper .inner .box-wrapper .box .element .obi {
    font-size: 5vw;
  }
  #point .wrapper .inner .box-wrapper .box .element .cards {
    display: block;
    margin: 20px 0 0 0;
  }
  #point .wrapper .inner .box-wrapper .box .element .cards .card {
    width: 100%;
    padding: 20px 20px 20px 20px;
    margin: 10px 0 0 0;
  }
  #point .wrapper .inner .box-wrapper .box .element .cards .card .top {
    display: flex;
    align-items: center;
  }
  #point .wrapper .inner .box-wrapper .box .element .cards .card .top .icon {
    line-height: 0;
    width: 30%;
  }
  #point .wrapper .inner .box-wrapper .box .element .cards .card .top h5 {
    width: 70%;
    font-size: 25px;
    margin: 0 0 0 0;
    padding: 0 0 0 20px;
    line-height: 1.2;
    color: #e27640;
  }
  #point .wrapper .inner .box-wrapper .box .element .cards .card .top h5 .sub {
    font-size: 0.75em;
  }
  #point .wrapper .inner .box-wrapper .box .element .cards .card table {
    font-family: zen-maru-gothic, sans-serif;
    font-weight: 700;
    font-style: normal;
    width: 100%;
    margin: 20px 0 0 0;
  }
  #point .wrapper .inner .box-wrapper .box .element .cards .card table th {
    text-align: left;
    background: #e2a140;
    color: #fff;
    padding: 2px 10px 2px 10px;
  }
  #point .wrapper .inner .box-wrapper .box .element .cards .card table td {
    text-align: right;
    background: #fff;
    color: #e27640;
    padding: 2px 10px 2px 10px;
  }
  #point .wrapper .inner .box-wrapper .box .element .cards .card .comment {
    margin: 20px 0 0 0;
  }
  #point .wrapper .inner .box-wrapper .box .element .cards .card .comment h5 {
    margin: 0 0 0 0;
    padding: 0 0 0 0;
  }
  #point .wrapper .inner .box-wrapper .box .element .cards .card .comment h5 .cover {
    display: inline-flex;
    background: #e2a140;
    padding: 5px 20px 5px 20px;
  }
  #point .wrapper .inner .box-wrapper .box .element .cards .card .comment h5 .cover .icon {
    line-height: 0;
    width: 20px;
    margin: 0 10px 0 0;
  }
  #point .wrapper .inner .box-wrapper .box .element .cards .card .comment h5 .cover .catch {
    color: #fff;
    font-size: 16px;
  }
  #point .wrapper .inner .box-wrapper .box .element .cards .card .comment p {
    margin: -20px 0 0 0;
    background: #fff;
    font-family: zen-maru-gothic, sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #d06d0a;
    padding: 40px 20px 20px 20px;
    font-size: 15px;
  }
  #point .wrapper .inner .box-wrapper .box .sentence {
    width: 92%;
    margin: 20px auto 0;
  }
  #point .wrapper .inner .box-wrapper .box .sentence p {
    font-size: 4.25vw;
    padding: 0 0 0 10px;
  }
  #point .wrapper .inner .box-wrapper .box:nth-child(2n-1) h4 {
    left: 10px;
    top: 10px;
  }
  #point .wrapper .inner .box-wrapper .box:nth-child(2n) {
    margin: 30px 0 0 0;
  }
  #point .wrapper .inner .box-wrapper .box:nth-child(2n) h4 {
    right: 10px;
    top: 10px;
  }
} /* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □   

◆	Stylesheet: さらに刻んで320pxまでのモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
/* 320px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/* 基本設定 */
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 PRICE 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
.price {
  background: linear-gradient(90deg, #fffae9 0%, #f9efd1 100%);
  overflow: hidden;
}
.price .wrapper {
  background: url(../images/point-pattern.svg) repeat 0 0;
  background-size: 30px auto;
  padding: 0 0 50px 0;
}
.price .wrapper .title {
  padding: 80px 0 0 0;
  position: relative;
}
.price .wrapper .title .back {
  font-family: "futura-pt", sans-serif;
  text-align: center;
  letter-spacing: 2px;
  line-height: 1.1;
  font-size: 160px;
  color: rgba(255, 255, 255, 0);
  -webkit-text-stroke: 1px rgb(254, 207, 106);
  position: absolute;
  top: 0;
  left: 50%;
  white-space: nowrap;
  transform: translate(-50%, 0);
  z-index: 1;
}
.price .wrapper .title .title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.price .wrapper .title .title-wrapper .left {
  margin: 0 30px 0 0;
}
.price .wrapper .title .title-wrapper .left h2 {
  text-align: center;
  position: relative;
  z-index: 2;
}
.price .wrapper .title .title-wrapper .left h2 .cover {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: rgba(223, 158, 45, 0.2) 0px 7px 29px 0px;
  padding: 5px 20px 5px 20px;
}
.price .wrapper .title .title-wrapper .left h2 .cover .icon {
  line-height: 0;
  width: 65px;
  margin: 0 10px 0 0;
}
.price .wrapper .title .title-wrapper .left h2 .cover .icon img {
  width: 100%;
  height: auto;
}
.price .wrapper .title .title-wrapper .left h2 .cover .catch {
  color: #ec7e24;
  font-size: 52px;
}
.price .wrapper .title .title-wrapper .right h3 .cover {
  margin: 10px 0 0 0;
  line-height: 1.35;
  text-align: center;
}
.price .wrapper .title .title-wrapper .right h3 .cover .line {
  display: inline-block;
  background: linear-gradient(90deg, #f36219 0%, #ffab2e 100%);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  color: #fff;
  padding: 5px 20px 5px 20px;
  font-size: 36px;
}
.price .wrapper .inner {
  margin: 0 auto 0;
}
.price .wrapper .inner .box {
  max-width: 1280px;
  margin: 30px auto 0;
  background: #fff;
  padding: 40px 40px 40px 40px;
  box-shadow: 3px 3px 0 0px #ffe798;
}
.price .wrapper .inner .box .element {
  padding: 0px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.price .wrapper .inner .box .element .sub {
  margin: 0 25px 0 0;
  text-align: center;
}
.price .wrapper .inner .box .element .sub p {
  font-family: nitalago-ruika, sans-serif;
  font-weight: 100;
  font-style: normal;
  display: inline-block;
  font-size: 32px;
  background: linear-gradient(90deg, #f35c19 0%, #ff8f2e 100%);
  color: #fff;
  padding: 8px 20px 8px 20px;
  border: solid 2px #ec7e24;
  line-height: 1;
  box-shadow: rgba(156, 156, 156, 0.3) 0px 7px 29px 0px;
}
.price .wrapper .inner .box .element .main {
  font-size: 50px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
  margin: 0px 0 0 0;
  text-align: center;
  position: relative;
  top: -5px;
  color: #ee520f;
}
.price .wrapper .inner .box .element .main .math {
  font-family: futura-pt-bold, futura-pt, atten-round-new, sans-serif;
  font-weight: 700;
}
.price .wrapper .inner .box .element .main .small {
  font-size: 30px;
}
.price .wrapper .inner .box .summary {
  margin: 15px 0 0 0;
}
.price .wrapper .inner .box .summary .sentence {
  width: 100%;
  margin: 0 auto 0;
  background: #fefadf;
  padding: 20px 0 20px 0;
  font-family: zen-maru-gothic, sans-serif;
  font-weight: 700;
  font-style: normal;
}
.price .wrapper .inner .box .summary .sentence p {
  line-height: 1.45;
  text-align: center;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 22px;
  color: #ee520f;
}
.price .wrapper .inner .box .factor {
  margin: 40px 0 0 0;
}
.price .wrapper .inner .box .factor h3 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.price .wrapper .inner .box .factor h3 .border {
  width: 3px;
  height: 40px;
  background: #ff0000;
}
.price .wrapper .inner .box .factor h3 .border.border-left {
  transform: rotate(-30deg);
}
.price .wrapper .inner .box .factor h3 .border.border-right {
  transform: rotate(30deg);
}
.price .wrapper .inner .box .factor h3 .catch {
  font-family: nitalago-ruika, sans-serif;
  font-weight: 100;
  font-style: normal;
  color: #ff0000;
  font-size: 35px;
  padding: 0 30px 0 30px;
}
.price .wrapper .inner .box .factor table {
  width: 85%;
  margin: 30px auto 0;
  border-collapse: separate;
  border-spacing: 8px;
  border: 1px;
}
.price .wrapper .inner .box .factor table th {
  background: linear-gradient(90deg, #f35c19 0%, #ff8f2e 100%);
  width: 30%;
  font-family: nitalago-ruika, sans-serif;
  font-weight: 100;
  color: #fff;
  font-size: 30px;
}
.price .wrapper .inner .box .factor table td {
  background: rgb(255, 250, 229);
  width: 70%;
  padding: 0 40px 0 40px;
  text-align: center;
}
.price .wrapper .inner .box .factor table td .first {
  position: relative;
  display: inline-block;
  font-size: 34px;
  font-weight: 700;
  color: #ec7e24;
  margin: 0 0 0 -30px;
}
.price .wrapper .inner .box .factor table td .first::after {
  content: "";
  background: #ec7e24;
  position: absolute;
  width: 100%;
  height: 2px;
  transform: translate(-50%, -50%) rotate(7.5deg);
  top: 50%;
  left: 50%;
}
.price .wrapper .inner .box .factor table td .first .small {
  font-size: 0.8em;
}
.price .wrapper .inner .box .factor table td .second {
  color: #ec7e24;
  text-align: center;
  margin: 0 0 0 30px;
}
.price .wrapper .inner .box .factor table td .second .arrow {
  font-size: 60px;
  padding: 0 0 0 10px;
}
.price .wrapper .inner .box .factor table td .second .zero {
  font-family: futura-pt, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 110px;
  line-height: 0.9;
  color: #ff0000;
}
.price .wrapper .inner .box .factor table td .second .yen {
  font-family: nitalago-ruika, sans-serif;
  font-weight: 100;
  font-size: 40px;
  color: #ff0000;
}
.price .wrapper .inner .box .glob {
  margin: 45px 0 0 0;
}
.price .wrapper .inner .box .glob h3 .catch {
  text-align: center;
  font-family: nitalago-ruika, sans-serif;
  font-weight: 100;
  font-style: normal;
  color: #ec7e24;
  font-size: 40px;
  padding: 0 30px 0 30px;
}
.price .wrapper .inner .box .glob table {
  width: 85%;
  margin: 30px auto 0;
}
.price .wrapper .inner .box .glob table th {
  padding: 10px 10px 10px 10px;
}
.price .wrapper .inner .box .glob table th.th02 {
  background: #20a24c;
  width: 25%;
  color: rgb(255, 249, 84);
  font-family: nitalago-ruika, sans-serif;
  font-weight: 100;
  font-size: 25px;
}
.price .wrapper .inner .box .glob table th.th01-00 {
  background: transparent;
  width: 22.5%;
}
.price .wrapper .inner .box .glob table th.th01-01 {
  background: #ec7e24;
  width: 22.5%;
  color: #ffe798;
  font-size: 30px;
}
.price .wrapper .inner .box .glob table th.th01-02 {
  background: #fce6b2;
  width: 30%;
  text-align: center;
}
.price .wrapper .inner .box .glob table th.th01-02 img {
  width: 60%;
  height: auto;
}
.price .wrapper .inner .box .glob table td {
  background: #fffcd9;
  font-family: nitalago-ruika, sans-serif;
  font-weight: 100;
  font-style: normal;
}
.price .wrapper .inner .box .glob table td.td01 {
  text-align: center;
  line-height: 1.35;
  color: #0e933a;
  font-size: 22px;
}
.price .wrapper .inner .box .glob table td.td01 .color {
  color: #ff0000;
}
.price .wrapper .inner .box .glob table td.td01 .emphasis {
  display: block;
  line-height: 1.2;
  color: #ff0000;
  font-size: 30px;
}
.price .wrapper .inner .box .glob table td.td01 .small {
  font-size: 18px;
}
.price .wrapper .inner .box .glob table td.td02 {
  text-align: center;
  font-size: 30px;
  color: #0e933a;
}
.price .wrapper .inner .box .glob table td.td02 .emphasis {
  color: #ff0000;
}
.price .wrapper .inner .box .glob table td.td02 .emphasis sup {
  font-size: max(1vw, 10px);
}
.price .wrapper .inner .box .glob table td.td02 .emphasis.attention {
  color: #ff0000;
  font-size: max(1vw, 8px);
}
.price .wrapper .inner .box .glob table td.td02 .annotation {
  position: relative;
}
.price .wrapper .inner .box .glob table td.td02 .annotation:after {
  position: absolute;
  content: "※";
  font-size: min(1.8vw, 10px);
  top: -5px;
  left: 101%;
}
.price .wrapper .inner .box .glob table td.td03 {
  text-align: center;
  font-size: 22px;
  line-height: 1.2;
  color: #0e933a;
}
.price .wrapper .inner .box .glob table td.td03 .type01 {
  margin: 0 0 0 -20px;
}
.price .wrapper .inner .box .glob table td.td03 .type02 {
  margin: 0 -20px 0 0px;
}
.price .wrapper .inner .box .glob table td.td03 .emphasis {
  color: #ff0000;
  font-size: 32px;
}
.price .wrapper .inner .box .glob.adjust {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .price .wrapper .inner .box .glob.adjust {
    margin-top: 15px;
  }
}
.price .wrapper .inner .box .glob.adjust table {
  width: 100%;
  table-layout: fixed;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .price .wrapper .inner .box .glob.adjust table {
    margin-top: 0;
  }
}
.price .wrapper .inner .box .glob.adjust table th {
  padding: 10px;
}
.price .wrapper .inner .box .glob.adjust table th.th02 {
  font-size: min(24px, 2.6vw);
}
@media screen and (max-width: 767px) {
  .price .wrapper .inner .box .glob.adjust table th.th02 {
    font-size: 3vw;
  }
}
@media screen and (max-width: 767px) {
  .price .wrapper .inner .box .glob.adjust table th {
    padding: 5px;
  }
}
.price .wrapper .inner .box .glob.adjust table th.th01-01 {
  font-size: min(24px, 1.87vw);
  width: 20%;
}
@media screen and (max-width: 767px) {
  .price .wrapper .inner .box .glob.adjust table th.th01-01 {
    font-size: max(10px, 2.66vw);
  }
}
.price .wrapper .inner .box .glob.adjust table td {
  padding: 5px 10px;
}
@media screen and (max-width: 767px) {
  .price .wrapper .inner .box .glob.adjust table td {
    padding: 10px 5px;
  }
}
.price .wrapper .inner .box .glob.adjust table td.td01 {
  font-size: min(22px, 1.67vw);
}
@media screen and (max-width: 767px) {
  .price .wrapper .inner .box .glob.adjust table td.td01 {
    font-size: max(2.7vw, 10px);
  }
}
.price .wrapper .inner .box .glob.adjust table td.td01 .color {
  color: #ff0000;
}
.price .wrapper .inner .box .glob.adjust table td.td01 .emphasis {
  font-size: 30px;
}
.price .wrapper .inner .box .glob.adjust table td.td01 .small {
  font-size: min(18px, 1.47vw);
}
@media screen and (max-width: 767px) {
  .price .wrapper .inner .box .glob.adjust table td.td01 .small {
    font-size: 1.7vw;
  }
}
.price .wrapper .inner .box .glob.adjust table td.td01 .small_2 {
  font-size: min(18px, 1.47vw);
}
@media screen and (max-width: 767px) {
  .price .wrapper .inner .box .glob.adjust table td.td01 .small_2 {
    font-size: 1.7vw;
  }
}
.price .wrapper .inner .box .glob.adjust table td.td02 {
  font-size: min(28px, 2.07vw);
}
@media screen and (max-width: 767px) {
  .price .wrapper .inner .box .glob.adjust table td.td02 {
    font-size: 3.73vw;
  }
}
.price .wrapper .inner .box .glob.adjust table td.td02 .emphasis sup {
  font-size: max(1vw, 10px);
}
.price .wrapper .inner .box .glob.adjust table td.td02 .emphasis.attention {
  font-size: max(1vw, 8px);
}
.price .wrapper .inner .box .glob.adjust table td.td02.adjust {
  font-size: min(22px, 1.67vw);
}
@media screen and (max-width: 767px) {
  .price .wrapper .inner .box .glob.adjust table td.td02.adjust {
    font-size: max(10px, 2.66vw);
  }
}
.price .wrapper .inner .box .glob.adjust table td.td03 {
  font-size: min(28px, 2.07vw);
}
@media screen and (max-width: 767px) {
  .price .wrapper .inner .box .glob.adjust table td.td03 {
    font-size: 3.5vw;
  }
}
.price .wrapper .inner .box .glob.adjust table td.td03 .type01 {
  margin: 0;
}
.price .wrapper .inner .box .glob.adjust table td.td03 .type02 {
  margin: 0 -20px 0 0px;
}
.price .wrapper .inner .box .glob.adjust table td.td03 .emphasis {
  font-size: min(28px, 2.07vw);
}
@media screen and (max-width: 767px) {
  .price .wrapper .inner .box .glob.adjust table td.td03 .emphasis {
    font-size: 3vw;
  }
}
.price .wrapper .inner .box .comment {
  max-width: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 60px auto 0;
}
.price .wrapper .inner .box .comment .icon {
  margin: 0 40px 0 0;
}
.price .wrapper .inner .box .comment .icon .image {
  width: 120px;
}
.price .wrapper .inner .box .comment .icon .image img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.price .wrapper .inner .box .comment .icon .name {
  font-family: zen-maru-gothic, sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 2px;
}
.price .wrapper .inner .box .comment .icon .name .sub {
  text-align: center;
  font-size: 17px;
}
.price .wrapper .inner .box .comment .icon .name .main {
  text-align: center;
  font-size: 20px;
}
.price .wrapper .inner .box .comment .fukudashi {
  color: #0e933a;
  padding: 5px 50px 30px 50px;
  position: relative;
  background: #fff;
  border-radius: 100px;
  box-shadow: 6px 6px 0 0 #ec7e24, rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  width: calc(100% - 150px);
}
.price .wrapper .inner .box .comment .fukudashi:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -40px;
  transform: translate(0, -50%) rotate(0deg);
  border: 25px solid transparent;
  border-right: 45px solid #fff;
}
.price .wrapper .inner .box .comment .fukudashi .mark {
  margin: -20px 0 0 0;
}
.price .wrapper .inner .box .comment .fukudashi .mark p {
  display: inline-block;
  background: linear-gradient(90deg, #f35c19 0%, #ff8f2e 100%);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 100px;
  font-weight: 700;
  color: #fff;
  padding: 3px 20px 3px 20px;
  font-size: 20px;
}
.price .wrapper .inner .box .comment .fukudashi .catch {
  margin: 20px 0 0 0;
}
.price .wrapper .inner .box .comment .fukudashi .catch p {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 1px;
}
.price .wrapper .inner .box .comment .fukudashi .catch p .small {
  font-size: 0.8em;
}
.price .wrapper .inner .box .comment .fukudashi .catch p .color {
  color: #ff0000;
}
.price .wrapper .inner .box .hunk {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0 0 0;
}
.price .wrapper .inner .box .hunk .circle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #f35c19 0%, #ffd52e 100%);
  border-radius: 50%;
  width: 150px;
  height: 150px;
  border: solid 2px #ec7e24;
  box-shadow: 0 0 0 2px #fff inset;
  margin: 0 20px 0 0;
}
.price .wrapper .inner .box .hunk .circle .cover {
  text-align: center;
  color: #fff;
  font-size: 22px;
}
.price .wrapper .inner .box .hunk .circle:last-child {
  margin: 0 0 0 0;
}
.price .wrapper .inner .box .explain {
  margin: 15px 0 0 0;
}
.price .wrapper .inner .box .explain .sentence p {
  font-family: nitalago-ruika, sans-serif;
  font-weight: 100;
  font-style: normal;
  text-align: center;
  color: #f36219;
  font-size: 54px;
}

.charge_attention {
  text-align: right;
  margin: 5px 0 0;
  color: #FF0000;
  padding-right: 5px;
  font-size: 14px;
}
.charge_attention.adjust {
  width: 85%;
  margin: 5px auto 0;
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .price .wrapper {
    padding: 0 0 50px 0;
  }
  .price .wrapper .title {
    padding: 80px 0 0 0;
  }
  .price .wrapper .title .back {
    letter-spacing: 2px;
    line-height: 1.1;
    font-size: 160px;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 1;
  }
  .price .wrapper .title .title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
  }
  .price .wrapper .title .title-wrapper .left {
    margin: 0 30px 0 0;
  }
  .price .wrapper .title .title-wrapper .left h2 {
    text-align: center;
    position: relative;
    z-index: 2;
  }
  .price .wrapper .title .title-wrapper .left h2 .cover {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 20px 5px 20px;
  }
  .price .wrapper .title .title-wrapper .left h2 .cover .icon {
    line-height: 0;
    width: 65px;
    margin: 0 10px 0 0;
  }
  .price .wrapper .title .title-wrapper .left h2 .cover .icon img {
    width: 100%;
    height: auto;
  }
  .price .wrapper .title .title-wrapper .left h2 .cover .catch {
    font-size: 52px;
  }
  .price .wrapper .title .title-wrapper .right h3 .cover {
    margin: 10px 0 0 0;
    line-height: 1.35;
  }
  .price .wrapper .title .title-wrapper .right h3 .cover .line {
    padding: 5px 20px 5px 20px;
    font-size: 36px;
  }
  .price .wrapper .inner {
    margin: 0 auto 0;
  }
  .price .wrapper .inner .box {
    max-width: 1280px;
    margin: 30px auto 0;
    background: #fff;
    padding: 40px 40px 40px 40px;
    box-shadow: 3px 3px 0 0px #ffe798;
  }
  .price .wrapper .inner .box .element {
    padding: 0px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .price .wrapper .inner .box .element .sub {
    margin: 0 25px 0 0;
    text-align: center;
  }
  .price .wrapper .inner .box .element .sub p {
    font-family: nitalago-ruika, sans-serif;
    font-weight: 100;
    font-style: normal;
    display: inline-block;
    font-size: 32px;
    background: linear-gradient(90deg, #f35c19 0%, #ff8f2e 100%);
    color: #fff;
    padding: 8px 20px 8px 20px;
    border: solid 2px #ec7e24;
    line-height: 1;
    box-shadow: rgba(156, 156, 156, 0.3) 0px 7px 29px 0px;
  }
  .price .wrapper .inner .box .element .main {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1;
    margin: 0px 0 0 0;
    text-align: center;
    position: relative;
    top: -5px;
    color: #ee520f;
  }
  .price .wrapper .inner .box .element .main .math {
    font-family: futura-pt-bold, futura-pt, atten-round-new, sans-serif;
    font-weight: 700;
  }
  .price .wrapper .inner .box .element .main .small {
    font-size: 30px;
  }
  .price .wrapper .inner .box .summary {
    margin: 15px 0 0 0;
  }
  .price .wrapper .inner .box .summary .sentence {
    width: 100%;
    margin: 0 auto 0;
    background: #fefadf;
    padding: 20px 0 20px 0;
    font-family: zen-maru-gothic, sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  .price .wrapper .inner .box .summary .sentence p {
    line-height: 1.45;
    text-align: center;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 22px;
    color: #ee520f;
  }
  .price .wrapper .inner .box .factor {
    margin: 40px 0 0 0;
  }
  .price .wrapper .inner .box .factor h3 {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .price .wrapper .inner .box .factor h3 .border {
    width: 3px;
    height: 40px;
    background: #ff0000;
  }
  .price .wrapper .inner .box .factor h3 .border.border-left {
    transform: rotate(-30deg);
  }
  .price .wrapper .inner .box .factor h3 .border.border-right {
    transform: rotate(30deg);
  }
  .price .wrapper .inner .box .factor h3 .catch {
    font-family: nitalago-ruika, sans-serif;
    font-weight: 100;
    font-style: normal;
    color: #ff0000;
    font-size: 35px;
    padding: 0 30px 0 30px;
  }
  .price .wrapper .inner .box .factor table {
    width: 85%;
    margin: 30px auto 0;
    border-collapse: separate;
    border-spacing: 8px;
    border: 1px;
  }
  .price .wrapper .inner .box .factor table th {
    background: linear-gradient(90deg, #f35c19 0%, #ff8f2e 100%);
    width: 30%;
    font-family: nitalago-ruika, sans-serif;
    font-weight: 100;
    color: #fff;
    font-size: 30px;
  }
  .price .wrapper .inner .box .factor table td {
    background: rgb(255, 250, 229);
    width: 70%;
    padding: 0 40px 0 40px;
    text-align: center;
  }
  .price .wrapper .inner .box .factor table td .first {
    position: relative;
    display: inline-block;
    font-size: 34px;
    font-weight: 700;
    color: #ec7e24;
    margin: 0 0 0 -30px;
  }
  .price .wrapper .inner .box .factor table td .first::after {
    content: "";
    background: #ec7e24;
    position: absolute;
    width: 100%;
    height: 2px;
    transform: translate(-50%, -50%) rotate(7.5deg);
    top: 50%;
    left: 50%;
  }
  .price .wrapper .inner .box .factor table td .first .small {
    font-size: 0.8em;
  }
  .price .wrapper .inner .box .factor table td .second {
    color: #ec7e24;
    text-align: center;
    margin: 0 0 0 30px;
  }
  .price .wrapper .inner .box .factor table td .second .arrow {
    font-size: 60px;
    padding: 0 0 0 10px;
  }
  .price .wrapper .inner .box .factor table td .second .zero {
    font-family: futura-pt, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 110px;
    line-height: 0.9;
    color: #ff0000;
  }
  .price .wrapper .inner .box .factor table td .second .yen {
    font-family: nitalago-ruika, sans-serif;
    font-weight: 100;
    font-size: 40px;
    color: #ff0000;
  }
  .price .wrapper .inner .box .glob {
    margin: 45px 0 0 0;
  }
  .price .wrapper .inner .box .glob h3 .catch {
    text-align: center;
    font-family: nitalago-ruika, sans-serif;
    font-weight: 100;
    font-style: normal;
    color: #ec7e24;
    font-size: 40px;
    padding: 0 30px 0 30px;
  }
  .price .wrapper .inner .box .glob table {
    width: 85%;
    margin: 30px auto 0;
  }
  .price .wrapper .inner .box .glob table th {
    padding: 10px 10px 10px 10px;
  }
  .price .wrapper .inner .box .glob table th.th02 {
    background: #20a24c;
    width: 25%;
    color: rgb(255, 249, 84);
    font-family: nitalago-ruika, sans-serif;
    font-weight: 100;
    font-size: 25px;
  }
  .price .wrapper .inner .box .glob table th.th01-00 {
    background: transparent;
    width: 22.5%;
  }
  .price .wrapper .inner .box .glob table th.th01-01 {
    background: #ec7e24;
    width: 22.5%;
    color: #ffe798;
    font-size: 30px;
  }
  .price .wrapper .inner .box .glob table th.th01-02 {
    background: #fce6b2;
    width: 30%;
    text-align: center;
  }
  .price .wrapper .inner .box .glob table th.th01-02 img {
    width: 60%;
    height: auto;
  }
  .price .wrapper .inner .box .glob table td {
    background: #fffcd9;
    font-family: nitalago-ruika, sans-serif;
    font-weight: 100;
    font-style: normal;
  }
  .price .wrapper .inner .box .glob table td.td01 {
    text-align: center;
    line-height: 1.35;
    color: #0e933a;
    font-size: 22px;
  }
  .price .wrapper .inner .box .glob table td.td01 .emphasis {
    display: block;
    line-height: 1.2;
    color: #e92608;
    font-size: 30px;
  }
  .price .wrapper .inner .box .glob table td.td02 {
    text-align: center;
    font-size: 30px;
    color: #0e933a;
  }
  .price .wrapper .inner .box .glob table td.td02 .emphasis {
    color: #e92608;
  }
  .price .wrapper .inner .box .glob table td.td03 {
    text-align: center;
    font-size: 22px;
    line-height: 1.2;
    color: #0e933a;
  }
  .price .wrapper .inner .box .glob table td.td03 .type01 {
    margin: 0 0 0 -20px;
  }
  .price .wrapper .inner .box .glob table td.td03 .type02 {
    margin: 0 -20px 0 0px;
  }
  .price .wrapper .inner .box .glob table td.td03 .emphasis {
    color: #e92608;
    font-size: 32px;
  }
  .price .wrapper .inner .box .hunk {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0 0 0;
  }
  .price .wrapper .inner .box .hunk .circle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #f35c19 0%, #ffd52e 100%);
    border-radius: 50%;
    width: 150px;
    height: 150px;
    border: solid 2px #ec7e24;
    box-shadow: 0 0 0 2px #fff inset;
    margin: 0 20px 0 0;
  }
  .price .wrapper .inner .box .hunk .circle .cover {
    text-align: center;
    color: #fff;
    font-size: 22px;
  }
  .price .wrapper .inner .box .hunk .circle:last-child {
    margin: 0 0 0 0;
  }
  .price .wrapper .inner .box .explain {
    margin: 15px 0 0 0;
  }
  .price .wrapper .inner .box .explain .sentence p {
    font-family: nitalago-ruika, sans-serif;
    font-weight: 100;
    font-style: normal;
    text-align: center;
    color: #f36219;
    font-size: 54px;
  }
} /* 1024px～1280px responsive-close



/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .price .wrapper {
    padding: 0 0 50px 0;
  }
  .price .wrapper .title {
    padding: 60px 0 0 0;
  }
  .price .wrapper .title .back {
    letter-spacing: 2px;
    line-height: 1.1;
    font-size: 14vw;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 1;
  }
  .price .wrapper .title .title-wrapper {
    display: block;
    z-index: 2;
  }
  .price .wrapper .title .title-wrapper .left {
    margin: 0 30px 0 0;
  }
  .price .wrapper .title .title-wrapper .left h2 {
    text-align: center;
    position: relative;
    z-index: 2;
  }
  .price .wrapper .title .title-wrapper .left h2 .cover {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 20px 5px 20px;
  }
  .price .wrapper .title .title-wrapper .left h2 .cover .icon {
    line-height: 0;
    width: 65px;
    margin: 0 10px 0 0;
  }
  .price .wrapper .title .title-wrapper .left h2 .cover .icon img {
    width: 100%;
    height: auto;
  }
  .price .wrapper .title .title-wrapper .left h2 .cover .catch {
    font-size: 52px;
  }
  .price .wrapper .title .title-wrapper .right h3 .cover {
    margin: 10px 0 0 0;
    line-height: 1.35;
  }
  .price .wrapper .title .title-wrapper .right h3 .cover .line {
    padding: 5px 20px 5px 20px;
    font-size: 36px;
  }
  .price .wrapper .inner {
    margin: 0 auto 0;
  }
  .price .wrapper .inner .box {
    max-width: 92%;
    margin: 30px auto 0;
    padding: 40px 40px 40px 40px;
  }
  .price .wrapper .inner .box .element {
    padding: 0px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .price .wrapper .inner .box .element .sub {
    margin: 0 25px 0 0;
    text-align: center;
  }
  .price .wrapper .inner .box .element .sub p {
    display: inline-block;
    font-size: 32px;
    padding: 8px 20px 8px 20px;
    border: solid 2px #ec7e24;
    line-height: 1;
    box-shadow: rgba(156, 156, 156, 0.3) 0px 7px 29px 0px;
  }
  .price .wrapper .inner .box .element .main {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1;
    margin: 0px 0 0 0;
    text-align: center;
    position: relative;
    top: -5px;
  }
  .price .wrapper .inner .box .element .main .small {
    font-size: 30px;
  }
  .price .wrapper .inner .box .summary {
    margin: 15px 0 0 0;
  }
  .price .wrapper .inner .box .summary .sentence {
    width: 100%;
    margin: 0 auto 0;
    padding: 20px 20px 20px 20px;
  }
  .price .wrapper .inner .box .summary .sentence p {
    line-height: 1.45;
    letter-spacing: 1px;
    font-size: 2.5vw;
  }
  .price .wrapper .inner .box .factor {
    margin: 40px 0 0 0;
  }
  .price .wrapper .inner .box .factor h3 {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .price .wrapper .inner .box .factor h3 .border {
    width: 3px;
    height: 40px;
  }
  .price .wrapper .inner .box .factor h3 .border.border-left {
    transform: rotate(-30deg);
  }
  .price .wrapper .inner .box .factor h3 .border.border-right {
    transform: rotate(30deg);
  }
  .price .wrapper .inner .box .factor h3 .catch {
    font-size: 35px;
    padding: 0 30px 0 30px;
  }
  .price .wrapper .inner .box .factor h3 .catch .sp-disblock {
    display: none;
  }
  .price .wrapper .inner .box .factor table {
    width: 85%;
    margin: 30px auto 0;
    border-collapse: separate;
    border-spacing: 8px;
    border: 1px;
  }
  .price .wrapper .inner .box .factor table th {
    background: linear-gradient(90deg, #f35c19 0%, #ff8f2e 100%);
    width: 30%;
    font-family: nitalago-ruika, sans-serif;
    font-weight: 100;
    color: #fff;
    font-size: 30px;
  }
  .price .wrapper .inner .box .factor table td {
    background: rgb(255, 250, 229);
    width: 70%;
    padding: 0 40px 0 40px;
    text-align: center;
  }
  .price .wrapper .inner .box .factor table td .first {
    position: relative;
    display: inline-block;
    font-size: 34px;
    font-weight: 700;
    color: #ec7e24;
    margin: 0 0 0 -30px;
  }
  .price .wrapper .inner .box .factor table td .first::after {
    content: "";
    background: #ec7e24;
    position: absolute;
    width: 100%;
    height: 2px;
    transform: translate(-50%, -50%) rotate(7.5deg);
    top: 50%;
    left: 50%;
  }
  .price .wrapper .inner .box .factor table td .first .small {
    font-size: 0.8em;
  }
  .price .wrapper .inner .box .factor table td .second {
    color: #ec7e24;
    text-align: center;
    margin: 0 0 0 30px;
  }
  .price .wrapper .inner .box .factor table td .second .arrow {
    font-size: 60px;
    padding: 0 0 0 10px;
  }
  .price .wrapper .inner .box .factor table td .second .zero {
    font-family: futura-pt, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 110px;
    line-height: 0.9;
    color: #ff0000;
  }
  .price .wrapper .inner .box .factor table td .second .yen {
    font-family: nitalago-ruika, sans-serif;
    font-weight: 100;
    font-size: 40px;
    color: #ff0000;
  }
  .price .wrapper .inner .box .glob {
    margin: 45px 0 0 0;
  }
  .price .wrapper .inner .box .glob h3 .catch {
    text-align: center;
    font-family: nitalago-ruika, sans-serif;
    font-weight: 100;
    font-style: normal;
    color: #ec7e24;
    font-size: 40px;
    padding: 0 30px 0 30px;
  }
  .price .wrapper .inner .box .glob table {
    width: 85%;
    margin: 30px auto 0;
  }
  .price .wrapper .inner .box .glob table th {
    padding: 10px 10px 10px 10px;
  }
  .price .wrapper .inner .box .glob table th.th02 {
    background: #20a24c;
    width: 25%;
    color: rgb(255, 249, 84);
    font-family: nitalago-ruika, sans-serif;
    font-weight: 100;
    font-size: 25px;
  }
  .price .wrapper .inner .box .glob table th.th01-00 {
    background: transparent;
    width: 22.5%;
  }
  .price .wrapper .inner .box .glob table th.th01-01 {
    background: #ec7e24;
    width: 22.5%;
    color: #ffe798;
    font-size: 30px;
  }
  .price .wrapper .inner .box .glob table th.th01-02 {
    background: #fce6b2;
    width: 30%;
    text-align: center;
  }
  .price .wrapper .inner .box .glob table th.th01-02 img {
    width: 60%;
    height: auto;
  }
  .price .wrapper .inner .box .glob table td {
    background: #fffcd9;
    font-family: nitalago-ruika, sans-serif;
    font-weight: 100;
    font-style: normal;
  }
  .price .wrapper .inner .box .glob table td.td01 {
    text-align: center;
    line-height: 1.35;
    color: #0e933a;
    font-size: 22px;
  }
  .price .wrapper .inner .box .glob table td.td01 .emphasis {
    display: block;
    line-height: 1.2;
    color: #e92608;
    font-size: 30px;
  }
  .price .wrapper .inner .box .glob table td.td02 {
    text-align: center;
    font-size: 30px;
    color: #0e933a;
  }
  .price .wrapper .inner .box .glob table td.td02 .emphasis {
    color: #e92608;
  }
  .price .wrapper .inner .box .glob table td.td03 {
    text-align: center;
    font-size: 22px;
    line-height: 1.2;
    color: #0e933a;
  }
  .price .wrapper .inner .box .glob table td.td03 .type01 {
    margin: 0 0 0 -20px;
  }
  .price .wrapper .inner .box .glob table td.td03 .type02 {
    margin: 0 -20px 0 0px;
  }
  .price .wrapper .inner .box .glob table td.td03 .emphasis {
    color: #e92608;
    font-size: 32px;
  }
  .price .wrapper .inner .box .hunk {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0 0 0;
  }
  .price .wrapper .inner .box .hunk .circle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #f35c19 0%, #ffd52e 100%);
    border-radius: 50%;
    width: 150px;
    height: 150px;
    border: solid 2px #ec7e24;
    box-shadow: 0 0 0 2px #fff inset;
    margin: 0 20px 0 0;
  }
  .price .wrapper .inner .box .hunk .circle .cover {
    text-align: center;
    color: #fff;
    font-size: 22px;
  }
  .price .wrapper .inner .box .hunk .circle:last-child {
    margin: 0 0 0 0;
  }
  .price .wrapper .inner .box .explain {
    margin: 15px 0 0 0;
  }
  .price .wrapper .inner .box .explain .sentence p {
    font-family: nitalago-ruika, sans-serif;
    font-weight: 100;
    font-style: normal;
    text-align: center;
    color: #f36219;
    font-size: 54px;
  }
} /* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .price {
    overflow: hidden;
  }
  .price .wrapper {
    background: url(../images/point-pattern.svg) repeat 0 0;
    background-size: 30px auto;
    padding: 0 0 50px 0;
  }
  .price .wrapper .title {
    padding: 55px 0 0 0;
  }
  .price .wrapper .title .back {
    font-size: 16vw;
  }
  .price .wrapper .title .title-wrapper {
    display: block;
  }
  .price .wrapper .title .title-wrapper .left {
    margin: 0 0px 0 0;
  }
  .price .wrapper .title .title-wrapper .left h2 {
    text-align: center;
  }
  .price .wrapper .title .title-wrapper .left h2 .cover {
    padding: 5px 20px 5px 20px;
  }
  .price .wrapper .title .title-wrapper .left h2 .cover .icon {
    line-height: 0;
    width: 8.5vw;
    margin: 0 10px 0 0;
  }
  .price .wrapper .title .title-wrapper .left h2 .cover .icon img {
    width: 100%;
    height: auto;
  }
  .price .wrapper .title .title-wrapper .left h2 .cover .catch {
    font-size: 7vw;
  }
  .price .wrapper .title .title-wrapper .right h3 .cover {
    margin: 105x 0 0 0;
    line-height: 1.35;
  }
  .price .wrapper .title .title-wrapper .right h3 .cover .line {
    padding: 5px 20px 5px 20px;
    font-size: 5.85vw;
  }
  .price .wrapper .inner {
    margin: 0 auto 0;
  }
  .price .wrapper .inner .box {
    max-width: 92%;
    margin: 30px auto 0;
    background: #fff;
    padding: 30px 10px 30px 10px;
    box-shadow: 3px 3px 0 0px #ffe798;
  }
  .price .wrapper .inner .box .element {
    padding: 0px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .price .wrapper .inner .box .element .sub {
    margin: 0 15px 0 0;
    text-align: center;
  }
  .price .wrapper .inner .box .element .sub p {
    font-size: 5vw;
    padding: 8px 10px 8px 10px;
    border: solid 2px #ec7e24;
    line-height: 1;
  }
  .price .wrapper .inner .box .element .main {
    font-size: 5vw;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1;
    margin: 0px 0 0 0;
    text-align: center;
    position: relative;
    top: -5px;
  }
  .price .wrapper .inner .box .element .main .small {
    font-size: 4.5vw;
  }
  .price .wrapper .inner .box .summary {
    margin: 15px 0 0 0;
  }
  .price .wrapper .inner .box .summary .sentence {
    width: 100%;
    margin: 0 auto 0;
    padding: 20px 20px 20px 20px;
  }
  .price .wrapper .inner .box .summary .sentence p {
    line-height: 1.45;
    text-align: center;
    letter-spacing: 1px;
    font-size: 4.25vw;
  }
  .price .wrapper .inner .box .factor {
    margin: 25px 0 0 0;
  }
  .price .wrapper .inner .box .factor h3 .border {
    width: 3px;
    height: 45px;
  }
  .price .wrapper .inner .box .factor h3 .border.border-left {
    transform: rotate(-30deg);
  }
  .price .wrapper .inner .box .factor h3 .border.border-right {
    transform: rotate(30deg);
  }
  .price .wrapper .inner .box .factor h3 .catch {
    font-size: 7vw;
    padding: 0 20px 0 20px;
    text-align: center;
  }
  .price .wrapper .inner .box .factor table {
    width: 100%;
    margin: 20px auto 0;
    border-spacing: 6px;
    border: 1px;
  }
  .price .wrapper .inner .box .factor table th {
    width: 37.5%;
    font-size: 5.5vw;
  }
  .price .wrapper .inner .box .factor table td {
    background: rgb(255, 250, 229);
    width: 62.5%;
    padding: 0 10px 0 10px;
    text-align: center;
  }
  .price .wrapper .inner .box .factor table td .first {
    position: relative;
    display: inline-block;
    font-size: 5vw;
    font-weight: 700;
    margin: 0 0 0 -10px;
  }
  .price .wrapper .inner .box .factor table td .first::after {
    content: "";
    background: #ec7e24;
    position: absolute;
    width: 100%;
    height: 2px;
    transform: translate(-50%, -50%) rotate(7.5deg);
    top: 50%;
    left: 50%;
  }
  .price .wrapper .inner .box .factor table td .first .small {
    font-size: 0.8em;
  }
  .price .wrapper .inner .box .factor table td .second {
    text-align: center;
    margin: 0 0 0 10px;
  }
  .price .wrapper .inner .box .factor table td .second .arrow {
    font-size: 8vw;
    padding: 0 0 0 10px;
  }
  .price .wrapper .inner .box .factor table td .second .zero {
    font-size: 12.5vw;
    line-height: 0.9;
  }
  .price .wrapper .inner .box .factor table td .second .yen {
    font-size: 9vw;
  }
  .price .wrapper .inner .box .comment {
    max-width: 100%;
    margin: 45px auto 0;
  }
  .price .wrapper .inner .box .comment .icon {
    margin: 0 0px 0 0;
    width: 25%;
    padding: 0 10px 0 0;
  }
  .price .wrapper .inner .box .comment .icon .image {
    width: 100%;
  }
  .price .wrapper .inner .box .comment .icon .image img {
    width: 100%;
    height: auto;
  }
  .price .wrapper .inner .box .comment .fukudashi {
    padding: 5px 10px 10px 10px;
    position: relative;
    background: #fff;
    border-radius: 20px;
    box-shadow: 3px 3px 0 0 #ec7e24, rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    width: 75%;
  }
  .price .wrapper .inner .box .comment .fukudashi:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translate(0, -50%) rotate(0deg);
    border: 15px solid transparent;
    border-right: 15px solid #fff;
  }
  .price .wrapper .inner .box .comment .fukudashi .mark {
    margin: -20px 0 0 0;
  }
  .price .wrapper .inner .box .comment .fukudashi .mark p {
    border-radius: 100px;
    padding: 3px 5px 3px 5px;
    font-size: 4vw;
  }
  .price .wrapper .inner .box .comment .fukudashi .catch {
    margin: 5px 0 0 0;
  }
  .price .wrapper .inner .box .comment .fukudashi .catch p {
    font-size: 4vw;
    line-height: 1.5;
    letter-spacing: 0px;
  }
  .price .wrapper .inner .box .comment .fukudashi .catch p .small {
    font-size: 0.8em;
  }
  .price .wrapper .inner .box .glob {
    margin: 25px 0 0 0;
  }
  .price .wrapper .inner .box .glob h3 .catch {
    text-align: center;
    font-size: 6vw;
    padding: 0 0px 0 0px;
  }
  .price .wrapper .inner .box .glob table {
    width: 100%;
    margin: 30px auto 0;
    position: relative;
  }
  .price .wrapper .inner .box .glob table th {
    padding: 10px 1px 10px 1px;
  }
  .price .wrapper .inner .box .glob table th.th02 {
    width: 20%;
    font-size: 3.5vw;
  }
  .price .wrapper .inner .box .glob table th.th01-00 {
    width: 20%;
  }
  .price .wrapper .inner .box .glob table th.th01-01 {
    width: 27.5%;
    color: #ffe798;
    font-size: 3.75vw;
  }
  .price .wrapper .inner .box .glob table th.th01-02 {
    width: 26%;
    text-align: center;
  }
  .price .wrapper .inner .box .glob table th.th01-02 img {
    width: 60%;
    height: auto;
  }
  .price .wrapper .inner .box .glob table td.td01 {
    font-size: 3.5vw;
    letter-spacing: 0px;
  }
  .price .wrapper .inner .box .glob table td.td01 .small {
    font-size: 2.5vw;
  }
  .price .wrapper .inner .box .glob table td.td01 .emphasis {
    display: block;
    line-height: 1.2;
    font-size: 3.5vw;
  }
  .price .wrapper .inner .box .glob table td.td02 {
    text-align: center;
    font-size: 3.5vw;
  }
  .price .wrapper .inner .box .glob table td.td03 {
    text-align: center;
    font-size: 3.25vw;
    line-height: 1.2;
  }
  .price .wrapper .inner .box .glob table td.td03 .type01 {
    margin: 0 0 0 -15px;
  }
  .price .wrapper .inner .box .glob table td.td03 .type02 {
    margin: 0 -15px 0 0px;
  }
  .price .wrapper .inner .box .glob table td.td03 .emphasis {
    font-size: 3.75vw;
  }
  .price .wrapper .inner .box .hunk {
    margin: 30px 0 0 0;
  }
  .price .wrapper .inner .box .hunk .circle {
    width: 25vw;
    height: 25vw;
    margin: 0 10px 0 0;
  }
  .price .wrapper .inner .box .hunk .circle .cover {
    text-align: center;
    font-size: 3.5vw;
    font-weight: 700;
  }
  .price .wrapper .inner .box .hunk .circle:last-child {
    margin: 0 0 0 0;
  }
  .price .wrapper .inner .box .explain {
    margin: 15px 0 0 0;
  }
  .price .wrapper .inner .box .explain .sentence p {
    font-size: 11vw;
  }
  .charge_attention {
    font-size: 1.8vw;
  }
  .charge_attention.adjust {
    width: 100%;
  }
} /* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □   

◆	Stylesheet: さらに刻んで320pxまでのモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
/* 320px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
.br_title {
  display: none;
}
@media screen and (max-width: 1023px) {
  .br_title {
    display: block;
  }
}

.br_emphasis {
  display: none;
}
@media screen and (max-width: 768px) {
  .br_emphasis {
    display: block;
  }
}

/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 TITLE31-01 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
.title31-01 {
  margin: 0px 0 0px 0;
  overflow: hidden;
  padding: 0px 0 0px 0;
}
.title31-01 .title-wrapper {
  background: linear-gradient(90deg, #ef5412 0%, #ff932e 100%);
  padding: 80px 0 80px 0;
}
.title31-01 .title-wrapper h5 {
  display: flex;
  align-items: center;
}
.title31-01 .title-wrapper h5 .border {
  width: 25%;
  height: 2px;
  background: #fff;
  margin: 0 20px 0 0;
}
.title31-01 .title-wrapper h5 .cover {
  color: #fff;
  font-family: futura-pt-bold, sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 5px;
}
.title31-01 .title-wrapper .block {
  display: flex;
  align-items: center;
  justify-content: center;
}
.title31-01 .title-wrapper .block .thumb {
  width: 750px;
  cursor: pointer;
  margin: 0px 0 0 0;
}
.title31-01 .title-wrapper .block .thumb img {
  width: 100%;
  height: auto;
}
.title31-01 .title-wrapper .block .thumb .caption {
  color: #fff;
  font-size: 16px;
  text-align: center;
  padding: 10px 0 10px 0;
}
.title31-01 .title-wrapper .block .right {
  color: #fff;
  padding: 0 0 0 50px;
  position: relative;
}
.title31-01 .title-wrapper .block .right h4 {
  white-space: nowrap;
  position: absolute;
  top: -100px;
  left: 50px;
  color: #fff;
  opacity: 0.15;
  font-size: 140px;
  font-family: futura-pt-bold, sans-serif;
  font-weight: 700;
  line-height: 1;
  z-index: 1;
}
.title31-01 .title-wrapper .block .right h2 {
  font-size: 80px;
  letter-spacing: 5px;
  line-height: 1.2;
  position: relative;
  z-index: 2;
  margin: -20px 0 10px 0;
  font-family: nitalago-ruika, sans-serif;
  font-weight: 100;
  font-style: normal;
}
.title31-01 .title-wrapper .block .right h3 {
  font-family: zen-maru-gothic, sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 1px;
  margin: 40px 0 0 0;
  font-weight: 100;
  font-size: 30px;
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .title31-01 .title-wrapper {
    padding: 60px 0 60px 0;
  }
  .title31-01 .title-wrapper h5 .border {
    width: 30%;
    height: 2px;
    margin: 0 20px 0 0;
  }
  .title31-01 .title-wrapper h5 .cover {
    font-size: 22px;
    letter-spacing: 5px;
  }
  .title31-01 .title-wrapper .block .thumb {
    width: 45%;
    margin: 0px 0 0 0;
  }
  .title31-01 .title-wrapper .block .thumb img {
    width: 100%;
    height: auto;
  }
  .title31-01 .title-wrapper .block .thumb .caption {
    font-size: 16px;
    text-align: center;
    padding: 10px 0 10px 0;
  }
  .title31-01 .title-wrapper .block .right {
    padding: 0 0 0 4%;
    position: relative;
  }
  .title31-01 .title-wrapper .block .right h4 {
    white-space: nowrap;
    position: absolute;
    top: -100px;
    left: 50px;
    opacity: 0.15;
    font-size: 140px;
    line-height: 1;
    z-index: 1;
  }
  .title31-01 .title-wrapper .block .right h2 {
    font-size: 5.75vw;
    letter-spacing: 2px;
    line-height: 1.2;
    z-index: 2;
    margin: -20px 0 10px 0;
  }
  .title31-01 .title-wrapper .block .right h3 {
    margin: 30px 0 0 0;
    font-size: 2.5vw;
  }
} /* 1024px～1280px responsive-close



/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .title31-01 .title-wrapper {
    padding: 60px 0 60px 0;
  }
  .title31-01 .title-wrapper h5 .border {
    width: 30%;
    height: 2px;
    margin: 0 20px 0 0;
  }
  .title31-01 .title-wrapper h5 .cover {
    font-size: 22px;
    letter-spacing: 5px;
  }
  .title31-01 .title-wrapper .block .thumb {
    width: 300px;
    margin: 0px 0 0 0;
  }
  .title31-01 .title-wrapper .block .thumb img {
    width: 100%;
    height: auto;
  }
  .title31-01 .title-wrapper .block .thumb .caption {
    font-size: 16px;
    text-align: center;
    padding: 10px 0 10px 0;
  }
  .title31-01 .title-wrapper .block .right {
    padding: 0 0 0 30px;
    position: relative;
  }
  .title31-01 .title-wrapper .block .right h4 {
    white-space: nowrap;
    position: absolute;
    top: -100px;
    left: -20px;
    color: #fff;
    opacity: 0.15;
    font-size: 110px;
    line-height: 1;
    z-index: 1;
  }
  .title31-01 .title-wrapper .block .right h2 {
    font-size: 5vw;
    letter-spacing: 5px;
    line-height: 1.2;
    z-index: 2;
    margin: -20px 0 10px 0;
  }
  .title31-01 .title-wrapper .block .right h3 {
    margin: 30px 0 0 0;
    font-size: 20px;
  }
} /* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .title31-01 {
    margin: 0px 0 0px 0;
    overflow: visible;
    padding: 0px 0 0px 0;
  }
  .title31-01 .title-wrapper {
    padding: 30px 0 30px 0;
  }
  .title31-01 .title-wrapper h5 {
    display: flex;
    align-items: center;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
  }
  .title31-01 .title-wrapper h5 .border {
    width: 20%;
    height: 2px;
    background: #fff;
    margin: 0 20px 0 0;
  }
  .title31-01 .title-wrapper h5 .cover {
    font-size: 4.5vw;
    letter-spacing: 3px;
  }
  .title31-01 .title-wrapper .block {
    display: block;
  }
  .title31-01 .title-wrapper .block .thumb {
    width: 92%;
    cursor: pointer;
    margin: 20px auto 0;
  }
  .title31-01 .title-wrapper .block .thumb img {
    width: 100%;
    height: auto;
  }
  .title31-01 .title-wrapper .block .thumb .caption {
    font-size: 16px;
    text-align: center;
    padding: 10px 0px 0px 10px;
  }
  .title31-01 .title-wrapper .block .right {
    padding: 20px 5% 10px 5%;
    margin: 0 auto 0;
    overflow: hidden;
  }
  .title31-01 .title-wrapper .block .right h4 {
    white-space: nowrap;
    top: -100px;
    left: 50px;
    color: #fff;
    opacity: 0.15;
    font-size: 90px;
    z-index: 1;
  }
  .title31-01 .title-wrapper .block .right h2 {
    font-size: 9vw;
    letter-spacing: 2px;
    line-height: 1.4;
    margin: 0px 0 10px 0;
  }
  .title31-01 .title-wrapper .block .right h3 {
    font-size: 5vw;
  }
} /* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □   

◆	Stylesheet: さらに刻んで320pxまでのモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
/* 320px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/* 基本設定 */
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 VOICE 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
.voice .wrapper .inner {
  padding: 0 0 50px 0;
}
.voice .wrapper .inner .box-wrapper {
  max-width: 1280px;
  margin: 30px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.voice .wrapper .inner .box-wrapper .box {
  width: 48.5%;
  background: #20a24c;
  margin: 50px 3% 0 0;
  padding: 20px 20px 20px 20px;
}
@media screen and (min-width: 1024px) {
  .voice .wrapper .inner .box-wrapper .box:nth-of-type(2n) .factor .sentence {
    margin-top: 7.5%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .voice .wrapper .inner .box-wrapper .box:nth-of-type(2n) .factor .sentence {
    margin-top: 21.6%;
  }
}
.voice .wrapper .inner .box-wrapper .box .thumb {
  position: relative;
}
.voice .wrapper .inner .box-wrapper .box .thumb .mark {
  position: absolute;
  top: 20px;
  background: #ec7e24;
  font-family: "Bebas Neue", cursive;
  line-height: 1.1;
  color: #fff;
  padding: 10px 15px 10px 15px;
}
.voice .wrapper .inner .box-wrapper .box .thumb .mark .sub {
  text-align: center;
  font-size: 20px;
}
.voice .wrapper .inner .box-wrapper .box .thumb .mark .main {
  text-align: center;
  line-height: 0.9;
  font-size: 55px;
}
.voice .wrapper .inner .box-wrapper .box .thumb .obi {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
}
.voice .wrapper .inner .box-wrapper .box .thumb .obi p {
  transform: skew(-15deg);
  text-align: center;
  background: #ec7e24;
  width: 90%;
  margin: 0 auto 0;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}
.voice .wrapper .inner .box-wrapper .box .element {
  display: flex;
  margin: 25px 0 0 0;
}
.voice .wrapper .inner .box-wrapper .box .element .left {
  width: 30%;
}
.voice .wrapper .inner .box-wrapper .box .element .left .icon {
  line-height: 0;
  position: relative;
}
.voice .wrapper .inner .box-wrapper .box .element .left .icon:before {
  content: "";
  position: absolute;
  width: 90%;
  height: 90%;
  border: solid 2px #ffffff;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.voice .wrapper .inner .box-wrapper .box .element .left .icon img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}
.voice .wrapper .inner .box-wrapper .box .element .right {
  width: 70%;
  padding: 0 0 20px 30px;
}
.voice .wrapper .inner .box-wrapper .box .element .right h3 {
  padding: 20px 0px 0px 0px;
  color: #fff000;
  font-family: nitalago-ruika, sans-serif;
  font-weight: 100;
  font-style: normal;
  letter-spacing: 1px;
  line-height: 1.5;
  font-size: 26px;
}
.voice .wrapper .inner .box-wrapper .box .element .right .score {
  font-family: "Bebas Neue", cursive;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.voice .wrapper .inner .box-wrapper .box .element .right .score .before {
  color: #fff;
  padding: 0 20px 0 0;
}
.voice .wrapper .inner .box-wrapper .box .element .right .score .before .main {
  text-align: center;
  line-height: 0.9;
  font-size: 50px;
}
.voice .wrapper .inner .box-wrapper .box .element .right .score .before .sub {
  text-align: center;
  line-height: 1;
  font-size: 32px;
}
.voice .wrapper .inner .box-wrapper .box .element .right .score .arrow {
  line-height: 0;
  width: 80px;
}
.voice .wrapper .inner .box-wrapper .box .element .right .score .arrow img {
  width: 100%;
  height: auto;
}
.voice .wrapper .inner .box-wrapper .box .element .right .score .after {
  color: #fff000;
  padding: 0 0 0 20px;
}
.voice .wrapper .inner .box-wrapper .box .element .right .score .after .main {
  text-align: center;
  line-height: 0.8;
  font-size: 100px;
}
.voice .wrapper .inner .box-wrapper .box .element .right .score .after .sub {
  text-align: center;
  line-height: 1;
  font-size: 32px;
}
.voice .wrapper .inner .box-wrapper .box .element .right .profile {
  margin: 15px 0 0 0;
  border-top: solid 2px #fff;
  padding: 10px 0 0 0;
  display: flex;
  justify-content: center;
}
.voice .wrapper .inner .box-wrapper .box .element .right .profile .name {
  color: #fff;
  margin: 0 30px 0 0;
  font-size: 30px;
}
.voice .wrapper .inner .box-wrapper .box .element .right .profile .name .small {
  font-size: 0.75em;
}
.voice .wrapper .inner .box-wrapper .box .element .right .profile .age {
  color: #fff;
  font-size: 30px;
}
.voice .wrapper .inner .box-wrapper .box .element .right .profile .age .small {
  font-size: 0.75em;
}
.voice .wrapper .inner .box-wrapper .box .factor h3 {
  padding: 0px 20px 20px 20px;
  color: #fff000;
  font-family: nitalago-ruika, sans-serif;
  font-weight: 100;
  font-style: normal;
  letter-spacing: 1px;
  line-height: 1.5;
  font-size: 26px;
}
.voice .wrapper .inner .box-wrapper .box .factor .sentence {
  width: 100%;
  margin: 5px auto 0;
  padding: 30px 30px 30px 30px;
  background: #fff;
}
.voice .wrapper .inner .box-wrapper .box .factor .sentence p {
  color: #231815;
  line-height: 1.85;
  font-size: 18px;
}
.voice .wrapper .inner .box-wrapper .box:nth-child(2n-1) .thumb .mark {
  left: 20px;
}
.voice .wrapper .inner .box-wrapper .box:nth-child(2n) {
  margin: 50px 0 0 0;
}
.voice .wrapper .inner .box-wrapper .box:nth-child(2n) .thumb .mark {
  right: 20px;
}

#graph {
  background: linear-gradient(90deg, #fcffe9 0%, #fff2c3 100%);
  padding: 3% 0 2%;
}
@media screen and (max-width: 767px) {
  #graph {
    padding-bottom: 5%;
  }
}

.graph_title {
  text-align: center;
  font-size: min(3.47vw, 60px);
  color: #ef0700;
  margin: 0 auto 2%;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .graph_title {
    font-size: min(7.3vw, 40px);
    margin: 5% auto 0;
    font-weight: 100;
  }
}
.graph_title:after {
  content: "※";
  font-size: min(1.8vw, 10px);
  position: absolute;
  top: 0;
  left: 100%;
  color: #ff0000;
}

.graph_container {
  width: 1280px;
  margin: 0 auto 0;
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .graph_container {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .graph_container {
    width: 100%;
  }
}
.graph_container .graph_inner {
  display: flex;
  margin: 0 auto 0;
  width: 100%;
  justify-content: space-around;
}
@media screen and (max-width: 767px) {
  .graph_container .graph_inner {
    width: 95%;
  }
}
.graph_container .graph_item {
  width: 485px;
}
@media screen and (max-width: 1280px) {
  .graph_container .graph_item {
    width: 40%;
    min-width: 300px;
  }
}
@media screen and (max-width: 1280px) {
  .graph_container .graph_item {
    width: 46%;
    margin: 35px auto 0;
    min-width: unset;
  }
}

.graph_attention {
  width: -moz-fit-content;
  width: fit-content;
  margin: 3% 0 0 auto;
  font-size: 10px;
  padding-right: 6%;
  color: #ff0000;
}
@media screen and (max-width: 767px) {
  .graph_attention {
    margin: 10% auto 0;
    padding: 0;
  }
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
/* 1024px～1280px responsive-close



/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .voice .wrapper .inner {
    padding: 0 0 50px 0;
  }
  .voice .wrapper .inner .box-wrapper {
    max-width: 96%;
    margin: 10px auto 0;
  }
  .voice .wrapper .inner .box-wrapper .box {
    width: 49%;
    margin: 35px 2% 0 0;
    padding: 20px 20px 20px 20px;
  }
  .voice .wrapper .inner .box-wrapper .box .thumb {
    position: relative;
  }
  .voice .wrapper .inner .box-wrapper .box .thumb .mark {
    position: absolute;
    top: 10px;
    padding: 10px 15px 10px 15px;
  }
  .voice .wrapper .inner .box-wrapper .box .thumb .mark .sub {
    text-align: center;
    font-size: 2vw;
  }
  .voice .wrapper .inner .box-wrapper .box .thumb .mark .main {
    text-align: center;
    line-height: 0.9;
    font-size: 4vw;
  }
  .voice .wrapper .inner .box-wrapper .box .thumb .obi {
    bottom: 20px;
    left: 0;
    width: 100%;
  }
  .voice .wrapper .inner .box-wrapper .box .thumb .obi p {
    transform: skew(-15deg);
    text-align: center;
    width: 90%;
    font-size: 2.5vw;
    font-weight: 700;
  }
  .voice .wrapper .inner .box-wrapper .box .element {
    margin: 25px 0 0 0;
  }
  .voice .wrapper .inner .box-wrapper .box .element .left {
    width: 30%;
  }
  .voice .wrapper .inner .box-wrapper .box .element .left .icon {
    line-height: 0;
    position: relative;
  }
  .voice .wrapper .inner .box-wrapper .box .element .left .icon:before {
    width: 90%;
    height: 90%;
    border: solid 2px #ffffff;
  }
  .voice .wrapper .inner .box-wrapper .box .element .left .icon img {
    width: 100%;
    height: auto;
  }
  .voice .wrapper .inner .box-wrapper .box .element .right {
    width: 70%;
    padding: 0 0 20px 15px;
  }
  .voice .wrapper .inner .box-wrapper .box .element .right h3 {
    padding: 20px 0px 0px 0px;
    letter-spacing: 1px;
    line-height: 1.5;
    font-size: 3vw;
  }
  .voice .wrapper .inner .box-wrapper .box .element .right .score .before {
    padding: 0 20px 0 0;
  }
  .voice .wrapper .inner .box-wrapper .box .element .right .score .before .main {
    text-align: center;
    line-height: 0.9;
    font-size: 4.5vw;
  }
  .voice .wrapper .inner .box-wrapper .box .element .right .score .before .sub {
    line-height: 1;
    font-size: 3vw;
  }
  .voice .wrapper .inner .box-wrapper .box .element .right .score .arrow {
    line-height: 0;
    width: 5vw;
  }
  .voice .wrapper .inner .box-wrapper .box .element .right .score .arrow img {
    width: 100%;
    height: auto;
  }
  .voice .wrapper .inner .box-wrapper .box .element .right .score .after {
    padding: 0 0 0 20px;
  }
  .voice .wrapper .inner .box-wrapper .box .element .right .score .after .main {
    text-align: center;
    line-height: 0.8;
    font-size: 9vw;
  }
  .voice .wrapper .inner .box-wrapper .box .element .right .score .after .sub {
    text-align: center;
    line-height: 1;
    font-size: 3vw;
  }
  .voice .wrapper .inner .box-wrapper .box .element .right .profile {
    margin: 15px 0 0 0;
    border-top: solid 2px #fff;
    padding: 10px 0 0 0;
    display: flex;
    justify-content: center;
  }
  .voice .wrapper .inner .box-wrapper .box .element .right .profile .name {
    margin: 0 30px 0 0;
    font-size: 3vw;
  }
  .voice .wrapper .inner .box-wrapper .box .element .right .profile .name .small {
    font-size: 0.75em;
  }
  .voice .wrapper .inner .box-wrapper .box .element .right .profile .age {
    font-size: 3vw;
  }
  .voice .wrapper .inner .box-wrapper .box .element .right .profile .age .small {
    font-size: 0.75em;
  }
  .voice .wrapper .inner .box-wrapper .box .factor h3 {
    padding: 0px 0px 20px 0px;
    letter-spacing: 1px;
    line-height: 1.5;
    font-size: 3vw;
  }
  .voice .wrapper .inner .box-wrapper .box .factor .sentence {
    width: 100%;
    margin: 5px auto 0;
    padding: 30px 20px 30px 20px;
  }
  .voice .wrapper .inner .box-wrapper .box .factor .sentence p {
    line-height: 1.85;
    font-size: 2vw;
  }
  .voice .wrapper .inner .box-wrapper .box:nth-child(2n-1) .thumb .mark {
    left: 10px;
  }
  .voice .wrapper .inner .box-wrapper .box:nth-child(2n) {
    margin: 35px 0 0 0;
  }
  .voice .wrapper .inner .box-wrapper .box:nth-child(2n) .thumb .mark {
    right: 10px;
  }
} /* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .voice .wrapper .inner {
    padding: 0 0 50px 0;
  }
  .voice .wrapper .inner .box-wrapper {
    max-width: 92%;
    margin: 30px auto 0;
    display: block;
  }
  .voice .wrapper .inner .box-wrapper .box {
    width: 100%;
    margin: 35px 0 0 0;
    padding: 15px 15px 15px 15px;
  }
  .voice .wrapper .inner .box-wrapper .box .thumb .mark {
    position: absolute;
    top: 15px;
    padding: 10px 15px 10px 15px;
  }
  .voice .wrapper .inner .box-wrapper .box .thumb .mark .sub {
    font-size: 4vw;
  }
  .voice .wrapper .inner .box-wrapper .box .thumb .mark .main {
    line-height: 0.9;
    font-size: 8.5vw;
  }
  .voice .wrapper .inner .box-wrapper .box .thumb .obi {
    bottom: 20px;
    width: 100%;
  }
  .voice .wrapper .inner .box-wrapper .box .thumb .obi p {
    width: 90%;
    font-size: 4.5vw;
  }
  .voice .wrapper .inner .box-wrapper .box .element {
    display: flex;
    margin: 25px 0 0 0;
  }
  .voice .wrapper .inner .box-wrapper .box .element .left {
    width: 25%;
  }
  .voice .wrapper .inner .box-wrapper .box .element .left .icon {
    line-height: 0;
    position: relative;
  }
  .voice .wrapper .inner .box-wrapper .box .element .left .icon:before {
    content: "";
    position: absolute;
    width: 90%;
    height: 90%;
    border: solid 2px #ffffff;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
  }
  .voice .wrapper .inner .box-wrapper .box .element .left .icon img {
    width: 100%;
    height: auto;
    border-radius: 50%;
  }
  .voice .wrapper .inner .box-wrapper .box .element .right {
    width: 75%;
    padding: 0 0 0 10px;
  }
  .voice .wrapper .inner .box-wrapper .box .element .right .score .before {
    padding: 0 15px 0 0;
  }
  .voice .wrapper .inner .box-wrapper .box .element .right .score .before .main {
    line-height: 0.9;
    font-size: 10vw;
  }
  .voice .wrapper .inner .box-wrapper .box .element .right .score .before .sub {
    font-size: 6.5vw;
  }
  .voice .wrapper .inner .box-wrapper .box .element .right .score .arrow {
    line-height: 0;
    width: 10vw;
  }
  .voice .wrapper .inner .box-wrapper .box .element .right .score .arrow img {
    width: 100%;
    height: auto;
  }
  .voice .wrapper .inner .box-wrapper .box .element .right .score .after {
    padding: 0 0 0 15px;
  }
  .voice .wrapper .inner .box-wrapper .box .element .right .score .after .main {
    line-height: 0.8;
    font-size: 18vw;
  }
  .voice .wrapper .inner .box-wrapper .box .element .right .score .after .sub {
    font-size: 6.5vw;
  }
  .voice .wrapper .inner .box-wrapper .box .element .right h3 {
    padding: 20px 0px 0px 0px;
    letter-spacing: 1px;
    line-height: 1.5;
    font-size: 5.5vw;
  }
  .voice .wrapper .inner .box-wrapper .box .element .right .profile {
    margin: 15px 0 0 0;
    padding: 10px 0 0 0;
  }
  .voice .wrapper .inner .box-wrapper .box .element .right .profile .name {
    margin: 0 20px 0 0;
    font-size: 6vw;
  }
  .voice .wrapper .inner .box-wrapper .box .element .right .profile .name .small {
    font-size: 0.75em;
  }
  .voice .wrapper .inner .box-wrapper .box .element .right .profile .age {
    font-size: 6vw;
  }
  .voice .wrapper .inner .box-wrapper .box .element .right .profile .age .small {
    font-size: 0.75em;
  }
  .voice .wrapper .inner .box-wrapper .box .factor h3 {
    padding: 20px 0px 0px 0px;
    letter-spacing: 1px;
    line-height: 1.5;
    font-size: 5.5vw;
  }
  .voice .wrapper .inner .box-wrapper .box .factor .sentence {
    width: 100%;
    margin: 15px auto 0;
    padding: 30px 20px 30px 20px;
  }
  .voice .wrapper .inner .box-wrapper .box .factor .sentence p {
    line-height: 1.85;
    font-size: 4vw;
  }
  .voice .wrapper .inner .box-wrapper .box:nth-child(2n-1) .thumb .mark {
    left: 15px;
  }
  .voice .wrapper .inner .box-wrapper .box:nth-child(2n) {
    margin: 35px 0 0 0;
  }
  .voice .wrapper .inner .box-wrapper .box:nth-child(2n) .thumb .mark {
    right: 15px;
  }
} /* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □   

◆	Stylesheet: さらに刻んで320pxまでのモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
/* 320px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/* 基本設定 */
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 TITLE01-02 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
.title01-02 {
  background: linear-gradient(90deg, #f35c19 0%, #ffd52e 100%);
  padding: 30px 0 30px 0;
  text-align: center;
  color: #fff;
}
.title01-02 h3 {
  text-align: center;
  padding: 10px 15px;
  width: 270px;
  border: solid 2px #fff;
  transform: skew(-15deg);
  margin: 0 auto 5px;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
}
.title01-02 h3 span {
  display: block;
  transform: skew(15deg);
}
.title01-02 h2 {
  font-size: 50px;
  margin: 10px 0 10px 0;
  line-height: 1.35;
  font-style: normal;
}
.title01-02 .caption {
  font-size: 17px;
  font-weight: 500;
  margin: 0 0 0 0;
  padding: 0 0px 5px 0px;
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
/* 1024px～1280px responsive-close



/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .title01-02 {
    padding: 30px 0 30px 0;
    text-align: center;
  }
  .title01-02 h3 {
    text-align: center;
    padding: 10px 15px;
    width: 32vw;
    border: solid 2px #fff;
    transform: skew(-15deg);
    margin: 0 auto 5px;
    font-weight: bold;
    font-size: 2.5vw;
  }
  .title01-02 h3 span {
    display: block;
    transform: skew(15deg);
  }
  .title01-02 h2 {
    font-size: 4vw;
    margin: 10px 0 10px 0;
    line-height: 1.35;
    font-style: normal;
  }
  .title01-02 .caption {
    font-size: 17px;
    font-weight: 500;
    margin: 0 0 0 0;
    padding: 0 0px 5px 0px;
  }
} /* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .title01-02 {
    padding: 30px 0 30px 0;
  }
  .title01-02 h3 {
    padding: 10px 15px;
    width: 250px;
    margin: 0 auto 5px;
    font-size: 5vw;
  }
  .title01-02 h2 {
    font-size: 8vw;
    margin: 10px 0 10px 0;
  }
  .title01-02 .caption {
    font-size: 17px;
    padding: 0 0px 5px 0px;
  }
} /* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □   

◆	Stylesheet: さらに刻んで320pxまでのモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
/* 320px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/* 基本設定 */
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 FLOW03 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
.flow {
  padding: 0px 0% 0 0%;
}
.flow ul {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 3.5% 0 3.5%;
}
.flow ul li {
  width: 100%;
  margin: 0 0 20px 0;
  border: solid 2px #ec7e24;
  background: #fff;
  padding: 0 0 0px 0;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  box-shadow: 5px 5px 0px 0px #ffe798, inset 0 0 0 3px #fff;
  position: relative;
}
.flow ul li .thumb {
  width: 35%;
  flex-basis: 35%;
  overflow: hidden;
  line-height: 0;
  padding: 30px 30px 30px 30px;
  display: flex;
  align-items: center;
}
.flow ul li .thumb .cover {
  width: 100%;
  position: relative;
}
.flow ul li .thumb .cover::after {
  position: absolute;
  content: "";
  width: 94%;
  height: 90%;
  border: solid 2px #ec7e24;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.flow ul li .thumb .cover img {
  width: 100%;
  height: auto;
  display: block;
}
.flow ul li .text {
  width: 65%;
  flex-basis: 65%;
  display: flex;
  align-items: center;
  justify-self: start;
  color: #ec7e24;
  padding: 10px 30px 10px 60px;
  position: relative;
}
.flow ul li .text .inside p {
  padding: 10px 0px 10px 0px;
}
.flow ul li .text .inside img.icon {
  position: absolute;
  z-index: 1;
  bottom: 20px;
  right: 30px;
  width: 150px;
  height: auto;
  opacity: 0.4;
}
.flow ul li .text .inside .semi {
  position: absolute;
  top: -30px;
  left: -60px;
  z-index: 2;
  font-family: futura-pt, futura-pt-bold, atten-round-new, sans-serif;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 10%;
  background: #ec7e24;
  color: #fff;
  padding: 3px 20px 3px 20px;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.1;
  width: 80px;
  height: 80px;
}
.flow ul li .text .inside .semi span.big {
  font-size: 25px;
}
.flow ul li .text .inside .block {
  position: relative;
  z-index: 2;
}
.flow ul li .text .inside .block h3 {
  font-size: 28px;
  font-weight: 700;
}
.flow ul li .text .inside .block p {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 500;
}
.flow ul li .text .inside .block p a {
  color: #20a24c;
}
.flow img.arrow {
  display: block;
  width: 100px;
  height: auto;
  margin: 0 auto 0;
}

.campaign {
  background: linear-gradient(90deg, #fcffe9 0%, #fff2c3 100%);
  padding: 3% 5%;
}
.campaign .campaign_title {
  color: #fff;
  background: linear-gradient(90deg, #f35c19 0%, #ffd52e 100%);
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  padding: 5px 10px;
  margin: 0 auto;
  font-size: 40px;
}
.campaign .campaign_sentence {
  text-align: center;
  font-size: 24px;
  margin: 25px 0 0;
}
.campaign .campaign_sentence span {
  color: #f36219;
  text-align: center;
  font-size: 30px;
}
.campaign .campaign_sentence .campaign_br {
  display: none;
}
.campaign .mention {
  display: block;
  text-align: center;
  font-size: 14px;
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .campaign .campaign_sentence .campaign_br {
    display: block;
  }
} /* 768px～1023px responsive-close



/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .campaign .campaign_sentence .campaign_br {
    display: block;
  }
} /* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .flow {
    padding: 20px 0% 0 0%;
  }
  .flow ul {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 3.5% 0 3.5%;
  }
  .flow ul li {
    width: 100%;
    margin: 0 0 20px 0;
    padding: 0 0 0px 0;
    display: block;
    position: relative;
  }
  .flow ul li .thumb {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background: #fff;
    padding: 3px 3px 0px 3px;
  }
  .flow ul li .thumb img.photo {
    width: 100%;
    height: auto;
  }
  .flow ul li .text {
    width: 100%;
    display: flex;
    align-items: center;
    justify-self: start;
    padding: 10px 5% 30px 5%;
    position: relative;
  }
  .flow ul li .text .inside img.icon {
    position: absolute;
    z-index: 1;
    bottom: 20px;
    right: 30px;
    width: 150px;
    height: auto;
    opacity: 0.4;
  }
  .flow ul li .text .inside .semi {
    position: absolute;
    top: -60px;
    left: 24px;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 10%;
    padding: 3px 20px 3px 20px;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.1;
    width: 80px;
    height: 80px;
  }
  .flow ul li .text .inside .semi span.big {
    font-size: 25px;
  }
  .flow ul li .text .inside .block {
    position: relative;
    z-index: 2;
  }
  .flow ul li .text .inside .block h3 {
    margin: 20px 0 0 0;
    font-size: 5.5vw;
    font-weight: 700;
  }
  .flow ul li .text .inside .block p {
    padding: 10px 0 10px 0;
    font-size: 4vw;
    font-weight: 500;
  }
  .flow ul li .text .inside .block p span {
    color: #fff;
    font-weight: 900;
    border-bottom: solid 2px #fff;
  }
  .flow img.arrow {
    display: block;
    width: 100px;
    height: auto;
    margin: 0 auto 0;
  }
  .campaign {
    padding: 5% 2%;
  }
  .campaign .campaign_title {
    font-size: min(6.9vw, 40px);
  }
  .campaign .campaign_sentence {
    font-size: min(4.26vw, 24px);
    margin-top: 15px;
  }
  .campaign .campaign_sentence span {
    font-size: min(5vw, 30px);
    font-weight: bold;
  }
  .campaign .campaign_sentence .campaign_br {
    display: block;
  }
  .campaign .mention {
    font-size: min(3.2vw, 14px);
  }
}
/* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □   

◆	Stylesheet: さらに刻んで320pxまでのモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
/* 320px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/* 基本設定 */
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 FAQ01 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
.faq {
  background-image: repeating-linear-gradient(90deg, rgba(215, 215, 215, 0.5), rgba(215, 215, 215, 0.5) 1px, transparent 1px, transparent 90px), repeating-linear-gradient(0deg, rgba(215, 215, 215, 0.5), rgba(215, 215, 215, 0.5) 1px, #f7f7f7 1px, #f7f7f7 90px);
  padding: 0px 0 50px 0;
  /*==============================================
  .faq .accordion
  ===============================================*/
}
.faq .accordion {
  max-width: 1200px;
  padding: 0px 5% 0px 5%;
  margin: 60px auto 0;
}
.faq .accordion li {
  border-width: 3px;
  border-style: solid;
  border-color: #ec7e24;
  background: #fff;
  border: solid 2px #ec7e24;
  margin: 0 0 20px 0;
  border-radius: 0px;
  font-weight: 700;
  font-style: normal;
  overflow: hidden;
  /*==============================================
  .faq .toggle_container
  ===============================================*/
}
.faq .accordion li .trigger {
  font-size: 22px;
  padding: 24px 40px 24px 40px;
  color: #ec7e24;
  position: relative;
  font-weight: bold;
  cursor: pointer;
  line-height: 2;
  color: #ec7e24;
  /*==============================================
  .faq .accordion .trigger::after
  ===============================================*/
}
.faq .accordion li .trigger:hover, .faq .accordion li .trigger.active {
  background: #ffe798;
}
.faq .accordion li .trigger span.icon-q {
  padding: 3px 12px 5px 12px;
  border-radius: 100px;
  color: #fff;
  background: #ec7e24;
  margin: 0 10px 0 0;
}
.faq .accordion li .trigger::after, .faq .accordion li .trigger.active::after {
  font-size: 40px;
  line-height: 1;
  position: absolute;
  top: 35%;
  right: 15px;
  margin-top: -11px;
  font-weight: bold;
}
.faq .accordion li .trigger::after {
  content: "›";
}
.faq .accordion li .trigger.active::after {
  content: "›";
  transform: rotate(90deg);
  animation: fadeIn 1s ease 0s 1 normal;
  -webkit-animation: fadeIn 1s ease 0s 1 normal;
}
.faq .accordion li .toggle_container {
  padding: 17px 40px 15px 40px;
  position: relative;
  line-height: 2;
  border-top: solid 2px #ec7e24;
}
.faq .accordion li .toggle_container p {
  font-size: 18px;
  margin: 0;
  color: #ec7e24;
}
.faq .accordion li .toggle_container p span.icon-a {
  line-height: 1;
  padding: 3px 11px 5px 11px;
  border-radius: 100px;
  color: #ec7e24;
  border: solid 2px #ec7e24;
  margin: 0 10px 0 0;
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .faq {
    margin: 0px 0 30px 0;
  }
  .faq .title {
    padding: 40px 0 0px 0px;
  }
  .faq .title .back {
    font-size: 90px;
  }
  .faq .title h3 .cover .middle {
    font-size: 20px;
    flex-basis: 20%;
  }
  .faq .title h3 .cover .left {
    flex-basis: 40%;
  }
  .faq .title h3 .cover .right {
    flex-basis: 40%;
  }
  .faq .title h2 {
    font-size: 5vw;
    margin: 30px 0 0px 0;
  }
  .faq .title h2 .line {
    padding: 5px 40px 5px 40px;
    margin: 0 0 20px 0;
  }
  .faq .accordion {
    margin: 40px auto 0;
  }
  .faq .accordion li {
    margin: 0 0 20px 0;
  }
  .faq .accordion li .trigger {
    font-size: 1.65vw;
    padding: 24px 40px 24px 40px;
    line-height: 2;
  }
  .faq .accordion li .trigger:hover, .faq .accordion li .trigger.active {
    background: transparent;
  }
  .faq .accordion li .trigger span.icon-q {
    padding: 3px 12px 5px 12px;
    border-radius: 50%;
    margin: 0 10px 0 0;
  }
  .faq .accordion li .trigger::after, .faq .accordion li .trigger.active::after {
    font-size: 35px;
    position: absolute;
    top: 35%;
    right: 15px;
    margin-top: -11px;
  }
  .faq .accordion li .toggle_container {
    padding: 17px 40px 15px 40px;
  }
  .faq .accordion li .toggle_container p {
    font-size: 1.65vw;
  }
  .faq .accordion li .toggle_container p span.icon-a {
    padding: 3px 13px 5px 13px;
  }
} /* 1024px～1280px responsive-close



/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .faq {
    margin: 0px 0 30px 0;
  }
  .faq .title {
    padding: 40px 0 0px 0px;
  }
  .faq .title .back {
    font-size: 90px;
  }
  .faq .title h3 .cover .middle {
    font-size: 20px;
    flex-basis: 20%;
  }
  .faq .title h3 .cover .left {
    flex-basis: 40%;
  }
  .faq .title h3 .cover .right {
    flex-basis: 40%;
  }
  .faq .title h2 {
    font-size: 5vw;
    margin: 30px 0 0px 0;
  }
  .faq .title h2 .line {
    padding: 5px 40px 5px 40px;
    margin: 0 0 20px 0;
  }
  .faq .accordion {
    margin: 40px auto 0;
  }
  .faq .accordion li {
    margin: 0 0 20px 0;
  }
  .faq .accordion li .trigger {
    font-size: 2.25vw;
    padding: 24px 40px 24px 40px;
    line-height: 2;
  }
  .faq .accordion li .trigger:hover, .faq .accordion li .trigger.active {
    background: transparent;
  }
  .faq .accordion li .trigger span.icon-q {
    padding: 3px 10px 5px 10px;
    border-radius: 100px;
    margin: 0 10px 0 0;
  }
  .faq .accordion li .trigger::after, .faq .accordion li .trigger.active::after {
    font-size: 35px;
    position: absolute;
    top: 35%;
    right: 15px;
    margin-top: -11px;
  }
  .faq .accordion li .toggle_container {
    padding: 17px 40px 15px 40px;
  }
  .faq .accordion li .toggle_container p {
    font-size: 1.95vw;
  }
} /* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .faq {
    /*==============================================
    .faq .accordion
    ===============================================*/
  }
  .faq .accordion {
    padding: 0px 5% 10px 5%;
    margin: 20px auto 0;
  }
  .faq .accordion li {
    /*==============================================
    .faq .toggle_container
    ===============================================*/
  }
  .faq .accordion li .trigger {
    font-size: 4.25vw;
    padding: 18px 30px 18px 25px;
    /*==============================================
    .faq .accordion .trigger::after
    ===============================================*/
  }
  .faq .accordion li .trigger:hover, .faq .accordion li .trigger.active {
    background: transparent;
  }
  .faq .accordion li .trigger span.icon-q {
    padding: 3px 10px 5px 10px;
    border-radius: 100px;
    margin: 0 10px 0 0;
    font-size: 4vw;
  }
  .faq .accordion li .trigger::after, .faq .accordion li .trigger.active::after {
    font-size: 25px;
    top: 35%;
    right: 15px;
    margin-top: 0px;
  }
  .faq .accordion li .toggle_container {
    padding: 17px 30px 15px 30px;
  }
  .faq .accordion li .toggle_container p {
    font-size: 3.85vw;
    margin: 0;
  }
  .faq .accordion li .toggle_container p span.icon-a {
    font-size: 3.5vw;
  }
} /* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □   

◆	Stylesheet: さらに刻んで320pxまでのモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
/* 320px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/* 基本設定 */
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 THOUGHT 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
.thought {
  overflow: hidden;
}
.thought .wrapper {
  background: rgba(236, 126, 36, 0.9);
  position: relative;
  overflow: hidden;
}
.thought .wrapper .back {
  position: absolute;
  top: 0;
  right: 0;
  font-family: futura-pt, futura-pt-bold, atten-round-new, sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 105px;
  color: rgba(255, 255, 255, 0.2);
  writing-mode: vertical-rl;
  white-space: nowrap;
}
.thought .wrapper .inner {
  display: flex;
  align-items: center;
  padding: 70px 0 0px 0;
}
.thought .wrapper .inner .thumb {
  width: 42.5%;
  margin: 0 0% 0 0;
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  box-shadow: rgba(206, 137, 52, 0.35) 0px 5px 15px;
}
.thought .wrapper .inner .thumb .image {
  line-height: 0;
  width: 50%;
}
.thought .wrapper .inner .thumb .image img {
  width: 100%;
  height: auto;
}
.thought .wrapper .inner .text {
  width: 57.5%;
  position: relative;
  z-index: 2;
}
.thought .wrapper .inner .text h3 {
  display: flex;
  align-items: center;
}
.thought .wrapper .inner .text h3 .border {
  width: 30%;
  height: 2px;
  background: #fffff0;
  position: relative;
  margin: 0 20px 0 0;
}
.thought .wrapper .inner .text h3 .border::after {
  content: "";
  width: 50%;
  height: 2px;
  background: #ffe798;
  position: absolute;
  top: 0;
  left: 0;
}
.thought .wrapper .inner .text h3 .cover {
  color: #fff;
  letter-spacing: 2px;
  font-size: 24px;
}
.thought .wrapper .inner .text h2 {
  margin: 30px 0 0 6%;
}
.thought .wrapper .inner .text h2 .cover {
  color: #fff;
  letter-spacing: 1px;
  font-size: 55px;
  font-weight: 700;
  font-style: normal;
}
.thought .wrapper .inner .text h2 .cover span {
  font-family: futura-pt, futura-pt-bold, atten-round-new, sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 65px;
}
.thought .wrapper .explain {
  margin: 40px 0 0 0;
  padding: 0 0 50px 0;
}
.thought .wrapper .explain .sentence {
  max-width: 1100px;
  margin: 0 auto 0;
}
.thought .wrapper .explain .sentence p {
  font-weight: 700;
  padding: 10px 0 10px 0;
  line-height: 2;
  color: #fff;
  font-size: 20px;
  letter-spacing: 1px;
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .thought .wrapper .back {
    font-size: 14vw;
  }
  .thought .wrapper .inner {
    padding: 70px 0 0px 0;
  }
  .thought .wrapper .inner .thumb {
    width: 55%;
  }
  .thought .wrapper .inner .thumb .image {
    width: 50%;
  }
  .thought .wrapper .inner .thumb .image img {
    width: 100%;
    height: auto;
  }
  .thought .wrapper .inner .text {
    width: 45%;
  }
  .thought .wrapper .inner .text h3 {
    display: flex;
    align-items: center;
  }
  .thought .wrapper .inner .text h3 .border {
    width: 20%;
    height: 2px;
    margin: 0 10px 0 0;
  }
  .thought .wrapper .inner .text h3 .cover {
    letter-spacing: 2px;
    font-size: 18px;
  }
  .thought .wrapper .inner .text h2 {
    margin: 25px 0 0 8%;
  }
  .thought .wrapper .inner .text h2 .cover {
    letter-spacing: 1px;
    font-size: 4.15vw;
  }
  .thought .wrapper .inner .text h2 .cover span {
    letter-spacing: 1px;
    font-size: 4.75vw;
  }
  .thought .wrapper .explain {
    margin: 30px 0 0 0;
    padding: 0 0 35px 0;
  }
  .thought .wrapper .explain .sentence p {
    padding: 10px 5% 10px 5%;
    line-height: 2;
    font-size: 18px;
    letter-spacing: 1px;
  }
} /* 1024px～1280px responsive-close



/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .thought .wrapper .back {
    font-size: 14vw;
  }
  .thought .wrapper .inner {
    padding: 70px 0 0px 0;
  }
  .thought .wrapper .inner .thumb {
    width: 50%;
  }
  .thought .wrapper .inner .thumb .image {
    width: 50%;
  }
  .thought .wrapper .inner .thumb .image img {
    width: 100%;
    height: auto;
  }
  .thought .wrapper .inner .text {
    width: 50%;
  }
  .thought .wrapper .inner .text h3 {
    display: flex;
    align-items: center;
  }
  .thought .wrapper .inner .text h3 .border {
    width: 20%;
    height: 2px;
    margin: 0 20px 0 0;
  }
  .thought .wrapper .inner .text h3 .cover {
    letter-spacing: 2px;
    font-size: 20px;
  }
  .thought .wrapper .inner .text h2 {
    margin: 15px 0 0 5%;
  }
  .thought .wrapper .inner .text h2 .cover {
    letter-spacing: 1px;
    font-size: 4.75vw;
  }
  .thought .wrapper .inner .text h2 .cover span {
    letter-spacing: 1px;
    font-size: 4.75vw;
  }
  .thought .wrapper .explain {
    margin: 30px 0 0 0;
    padding: 0 0 35px 0;
  }
  .thought .wrapper .explain .sentence p {
    padding: 10px 5% 10px 5%;
    line-height: 2;
    font-size: 18px;
    letter-spacing: 1px;
  }
} /* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .thought .wrapper .back {
    font-size: 20vw;
    color: rgba(255, 255, 255, 0.3);
    writing-mode: vertical-rl;
    white-space: nowrap;
    z-index: 4;
  }
  .thought .wrapper .inner {
    display: block;
    align-items: center;
    padding: 70px 0 0px 0;
  }
  .thought .wrapper .inner .thumb {
    width: 100%;
    margin: 0 0% 0 0;
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    box-shadow: rgba(187, 26, 26, 0.35) 0px 5px 15px;
  }
  .thought .wrapper .inner .thumb .image {
    line-height: 0;
    width: 50%;
  }
  .thought .wrapper .inner .thumb .image img {
    width: 100%;
    height: auto;
  }
  .thought .wrapper .inner .text {
    width: 100%;
    position: relative;
    z-index: 3;
  }
  .thought .wrapper .inner .text h3 {
    margin: 25px 0 0 0;
  }
  .thought .wrapper .inner .text h3 .border {
    width: 25%;
    height: 2px;
  }
  .thought .wrapper .inner .text h3 .cover {
    font-size: 5vw;
  }
  .thought .wrapper .inner .text h2 {
    margin: 30px 5% 0 5%;
  }
  .thought .wrapper .inner .text h2 .cover {
    letter-spacing: 0px;
    font-size: 6.5vw;
  }
  .thought .wrapper .inner .text h2 .cover span {
    letter-spacing: 2px;
    font-size: 9vw;
  }
  .thought .wrapper .explain {
    width: 90%;
    margin: 20px auto 0;
    padding: 0 0 30px 0;
  }
  .thought .wrapper .explain .sentence p {
    font-size: 4vw;
    letter-spacing: 1px;
  }
} /* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □   

◆	Stylesheet: さらに刻んで320pxまでのモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
/* 320px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 FOOTER 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
.footer {
  margin: 0px 0 0 0;
  overflow: hidden;
}
.footer .wrapper {
  background: linear-gradient(90deg, #f05a10 0%, #ff8e1e 100%);
}
.footer .wrapper .inner {
  padding: 80px 0 80px 0;
}
.footer .wrapper .inner .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto 0;
}
.footer .wrapper .inner .top .logo {
  display: flex;
  align-items: center;
}
.footer .wrapper .inner .top .logo .image {
  line-height: 1;
  width: 250px;
  margin: 0 20px 0 0;
}
.footer .wrapper .inner .top .logo .image img {
  width: 100%;
  height: auto;
}
.footer .wrapper .inner .top .logo .caption {
  font-family: nitalago-ruika, sans-serif;
  font-weight: 100;
  font-style: normal;
  color: #fff;
  letter-spacing: 1px;
  font-size: 18px;
  transform: skew(-10deg);
}
.footer .wrapper .inner .top .block .semi {
  color: #fff;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 18px;
}
.footer .wrapper .inner .top .block .button {
  margin: 10px 0 0 0;
}
.footer .wrapper .inner .top .block .button a {
  text-decoration: none;
  color: #fff;
  border: solid 2px #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0 10px 0;
}
.footer .wrapper .inner .top .block .button a .icon {
  line-height: 0;
  width: 30px;
  margin: 0 10px 0 0;
}
.footer .wrapper .inner .top .block .button a .icon img {
  width: 100%;
  height: auto;
}
.footer .wrapper .inner .top .block .button a .catch {
  font-family: zen-maru-gothic, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #fff;
  letter-spacing: 1px;
  font-size: 20px;
}
.footer .wrapper .inner ul {
  list-style-type: none;
  max-width: 1280px;
  margin: 70px auto 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.footer .wrapper .inner ul li {
  padding: 10px 20px 10px 20px;
}
.footer .wrapper .inner ul li a {
  font-family: nitalago-ruika, sans-serif;
  font-weight: 100;
  font-style: normal;
  text-decoration: none;
  color: #fff;
  letter-spacing: 1px;
  font-size: 20px;
}
.footer .wrapper .last {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  border-top: solid 2px #fff;
  max-width: 1280px;
  margin: 20px auto 0;
  color: #fff;
  padding: 15px 20px 20px 30px;
}
.footer .wrapper .last .left ul {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  display: flex;
  align-items: center;
  list-style: none;
}
.footer .wrapper .last .left ul li {
  padding: 0 0 0 20px;
}
.footer .wrapper .last .left ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  padding: 0 0px 0 0px;
  font-size: 18px;
}
.footer .wrapper .last .right small {
  font-family: futura-pt, sans-serif;
  font-weight: 700;
  font-style: normal;
  display: block;
  letter-spacing: 2px;
  font-size: 18px;
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .footer {
    margin: 0px 0 0 0;
  }
  .footer .wrapper .inner {
    padding: 80px 2.5% 80px 2.5%;
  }
  .footer .wrapper .inner .top {
    max-width: 1280px;
    margin: 0 auto 0;
  }
  .footer .wrapper .inner .top .logo .image {
    line-height: 1;
    width: 250px;
    margin: 0 20px 0 0;
  }
  .footer .wrapper .inner .top .logo .image img {
    width: 100%;
    height: auto;
  }
  .footer .wrapper .inner .top .logo .caption {
    letter-spacing: 1px;
    font-size: 18px;
    transform: skew(-10deg);
  }
  .footer .wrapper .inner .top .block .semi {
    letter-spacing: 2px;
    font-size: 18px;
  }
  .footer .wrapper .inner .top .block .button {
    margin: 10px 0 0 0;
  }
  .footer .wrapper .inner .top .block .button a {
    padding: 10px 0 10px 0;
  }
  .footer .wrapper .inner .top .block .button a .icon {
    width: 30px;
    margin: 0 10px 0 0;
  }
  .footer .wrapper .inner .top .block .button a .icon img {
    width: 100%;
    height: auto;
  }
  .footer .wrapper .inner .top .block .button a .catch {
    letter-spacing: 1px;
    font-size: 20px;
  }
  .footer .wrapper .inner ul li {
    padding: 10px 20px 10px 20px;
  }
  .footer .wrapper .inner ul li a {
    letter-spacing: 1px;
    font-size: 20px;
  }
  .footer .wrapper small {
    max-width: 1280px;
    margin: 20px auto 0;
    padding: 15px 20px 20px 30px;
    letter-spacing: 2px;
    font-size: 18px;
  }
} /* 1024px～1280px responsive-close



/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .footer {
    margin: 0px 0 0 0;
  }
  .footer .wrapper .inner {
    padding: 60px 2.5% 40px 2.5%;
  }
  .footer .wrapper .inner .top {
    max-width: 1280px;
    margin: 0 auto 0;
    display: block;
  }
  .footer .wrapper .inner .top .logo {
    display: flex;
    justify-content: center;
  }
  .footer .wrapper .inner .top .logo .image {
    line-height: 1;
    width: 250px;
    margin: 0 20px 0 0;
  }
  .footer .wrapper .inner .top .logo .image img {
    width: 100%;
    height: auto;
  }
  .footer .wrapper .inner .top .logo .caption {
    letter-spacing: 1px;
    font-size: 18px;
    transform: skew(-10deg);
  }
  .footer .wrapper .inner .top .block {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0 0 0;
  }
  .footer .wrapper .inner .top .block .semi {
    letter-spacing: 2px;
    font-size: 18px;
    padding: 0 40px 0 0;
  }
  .footer .wrapper .inner .top .block .button {
    margin: 0px 0 0 0;
  }
  .footer .wrapper .inner .top .block .button a {
    padding: 10px 20px 10px 20px;
  }
  .footer .wrapper .inner .top .block .button a .icon {
    width: 30px;
    margin: 0 10px 0 0;
  }
  .footer .wrapper .inner .top .block .button a .icon img {
    width: 100%;
    height: auto;
  }
  .footer .wrapper .inner .top .block .button a .catch {
    letter-spacing: 1px;
    font-size: 20px;
  }
  .footer .wrapper .inner ul {
    margin: 40px auto 0;
  }
  .footer .wrapper .inner ul li {
    padding: 10px 15px 10px 15px;
  }
  .footer .wrapper .inner ul li a {
    letter-spacing: 1px;
    font-size: 2.5vw;
  }
  .footer .wrapper .last {
    max-width: 1280px;
    margin: 20px auto 0;
    padding: 15px 10px 20px 10px;
  }
  .footer .wrapper .last .left ul li {
    padding: 0 0 0 15px;
  }
  .footer .wrapper .last .left ul li a {
    padding: 0 0px 0 0px;
    font-size: 2vw;
  }
  .footer .wrapper .last .right small {
    letter-spacing: 2px;
    font-size: 2vw;
  }
} /* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .footer .wrapper {
    padding: 0 0 80px 0;
  }
  .footer .wrapper .inner {
    padding: 50px 0 60px 0;
  }
  .footer .wrapper .inner .top {
    display: block;
    max-width: 100%;
  }
  .footer .wrapper .inner .top .logo {
    display: block;
  }
  .footer .wrapper .inner .top .logo .image {
    line-height: 1;
    width: 55vw;
    margin: 0 auto 0;
  }
  .footer .wrapper .inner .top .logo .image img {
    width: 100%;
    height: auto;
  }
  .footer .wrapper .inner .top .logo .caption {
    text-align: center;
    letter-spacing: 1px;
    font-size: 4vw;
    margin: 25px 0 0 0;
  }
  .footer .wrapper .inner .top .block {
    margin: 30px 0 0 0;
  }
  .footer .wrapper .inner .top .block .semi {
    text-align: center;
    letter-spacing: 2px;
    font-size: 5vw;
  }
  .footer .wrapper .inner .top .block .button {
    width: 85%;
    margin: 10px auto 0;
  }
  .footer .wrapper .inner .top .block .button a {
    display: flex;
    padding: 10px 0 10px 0;
  }
  .footer .wrapper .inner .top .block .button a .icon {
    line-height: 0;
    width: 6vw;
    margin: 0 10px 0 0;
  }
  .footer .wrapper .inner .top .block .button a .icon img {
    width: 100%;
    height: auto;
  }
  .footer .wrapper .inner .top .block .button a .catch {
    letter-spacing: 1px;
    font-size: 5vw;
  }
  .footer .wrapper .inner ul {
    max-width: 100%;
    margin: 70px auto 0;
    padding: 0 0 0 0;
  }
  .footer .wrapper .inner ul li {
    width: 100%;
    padding: 10px 20px 10px 20px;
    border-top: solid 2px #e1bd99;
    text-align: center;
  }
  .footer .wrapper .inner ul li a {
    letter-spacing: 1px;
    font-size: 20px;
  }
  .footer .wrapper .inner ul li:last-child {
    border-bottom: solid 2px #e1bd99;
  }
  .footer .wrapper .last {
    max-width: 100%;
    margin: 20px auto 0;
    padding: 15px 10px 20px 10px;
    display: block;
  }
  .footer .wrapper .last .left ul {
    justify-content: center;
  }
  .footer .wrapper .last .left ul li {
    padding: 0 10px 0 10px;
  }
  .footer .wrapper .last .left ul li a {
    padding: 0 0px 0 0px;
    font-size: 4.25vw;
  }
  .footer .wrapper .last .right {
    padding: 20px 0 0;
  }
  .footer .wrapper .last .right small {
    text-align: center;
    letter-spacing: 2px;
    font-size: 3vw;
  }
} /* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □   

◆	Stylesheet: さらに刻んで320pxまでのモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
/* 320px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/* 基本設定 */
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 FIX-MENU 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
.fix-menu {
  display: none;
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
/* 1024px～1280px responsive-close



/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
/* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .fix-menu {
    display: block;
  }
  .fix-menu .wrapper .inner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: center;
    z-index: 1000;
  }
  .fix-menu .wrapper .inner .button {
    width: 100%;
    background: linear-gradient(90deg, #0b9f5b 0%, #78af0e 100%);
  }
  .fix-menu .wrapper .inner .button a {
    text-decoration: none;
    color: #fff;
  }
  .fix-menu .wrapper .inner .button a .caption {
    text-align: center;
    margin: -15px 0 0 0;
  }
  .fix-menu .wrapper .inner .button a .caption .cover {
    display: inline-block;
    background: #fff;
    font-family: zen-maru-gothic, sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #ec7e24;
    border: solid 2px #ec7e24;
    padding: 1px 15px 1px 15px;
    line-height: 1.1;
    font-size: 4.25vw;
    border-radius: 100px;
  }
  .fix-menu .wrapper .inner .button a .main {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.1;
    padding: 5px 0 5px 0;
  }
  .fix-menu .wrapper .inner .button a .main .icon {
    line-height: 0;
    width: 7vw;
  }
  .fix-menu .wrapper .inner .button a .main .icon img {
    width: 100%;
    height: auto;
  }
  .fix-menu .wrapper .inner .button a .main .catch {
    text-align: center;
    font-family: nitalago-ruika, sans-serif;
    font-weight: 100;
    font-style: normal;
    font-size: 5vw;
    padding: 0 10px 0 10px;
    line-height: 1.3;
  }
  .fix-menu .wrapper .inner .button a .main .arrow {
    line-height: 0;
    width: 5.5vw;
  }
  .fix-menu .wrapper .inner .button a .main .arrow img {
    width: 100%;
    height: auto;
  }
} /* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □   

◆	Stylesheet: さらに刻んで320pxまでのモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
/* 320px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/* 基本設定 */
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 FORM 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
@media screen and (max-width: 767px) {
  .sp-hide {
    display: none;
  }
}

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

.form-sec {
  background: linear-gradient(90deg, #fffae9 0%, #f9efd1 100%);
}
.form-sec .section-inner {
  background: url(../images/point-pattern.svg) repeat 0 0;
  background-size: 30px auto;
  padding: 50px 0 100px 0;
}
@media screen and (max-width: 767px) {
  .form-sec .section-inner {
    padding: 25px 10px;
  }
}
.form-sec .section-inner .form,
.form-sec .section-inner .thanks {
  max-width: 900px;
  margin: auto;
  padding: 30px 50px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .form-sec .section-inner .form,
  .form-sec .section-inner .thanks {
    padding: 20px 5px;
  }
}
.form-sec .section-inner .form .send-completed,
.form-sec .section-inner .thanks .send-completed {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 10px;
  color: #1c1c1c;
  padding-right: 20px;
}
.form-sec .section-inner .form .send-completed img,
.form-sec .section-inner .thanks .send-completed img {
  width: 40px;
  height: auto;
  margin-right: 5px;
  transform: rotate(-20deg);
}
@media screen and (max-width: 767px) {
  .form-sec .section-inner .form .send-completed,
  .form-sec .section-inner .thanks .send-completed {
    margin-bottom: 10px;
  }
}
.form-sec .section-inner .form h2,
.form-sec .section-inner .thanks h2 {
  color: #ec7e24;
  font-size: 52px;
  text-align: center;
  padding-bottom: 20px;
}
.form-sec .section-inner .form h2.thanks-ttl,
.form-sec .section-inner .thanks h2.thanks-ttl {
  font-size: 30px;
}
@media screen and (max-width: 767px) {
  .form-sec .section-inner .form h2,
  .form-sec .section-inner .thanks h2 {
    font-size: 30px;
    padding-bottom: 10px;
  }
  .form-sec .section-inner .form h2.thanks-ttl,
  .form-sec .section-inner .thanks h2.thanks-ttl {
    font-size: 20px;
  }
}
.form-sec .section-inner .form .intro,
.form-sec .section-inner .thanks .intro {
  color: #3c3c3c;
  font-size: 14px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .form-sec .section-inner .form .intro,
  .form-sec .section-inner .thanks .intro {
    font-size: 12px;
    text-align: left;
    padding-left: 2em;
  }
}
.form-sec .section-inner .form .intro1,
.form-sec .section-inner .thanks .intro1 {
  margin-bottom: 10px;
}
.form-sec .section-inner .form .intro1::before,
.form-sec .section-inner .thanks .intro1::before {
  content: "※1";
}
@media screen and (max-width: 767px) {
  .form-sec .section-inner .form .intro1::before,
  .form-sec .section-inner .thanks .intro1::before {
    position: absolute;
    left: 0;
    top: 0;
  }
}
.form-sec .section-inner .form .intro2,
.form-sec .section-inner .thanks .intro2 {
  margin-bottom: 40px;
}
.form-sec .section-inner .form .intro2::before,
.form-sec .section-inner .thanks .intro2::before {
  content: "※2";
}
@media screen and (max-width: 767px) {
  .form-sec .section-inner .form .intro2::before,
  .form-sec .section-inner .thanks .intro2::before {
    position: absolute;
    left: 0;
    top: 0;
  }
}
.form-sec .section-inner .form .form-contents label.error,
.form-sec .section-inner .thanks .form-contents label.error {
  color: red;
  width: 100%;
  padding-left: 220px;
}
@media screen and (max-width: 767px) {
  .form-sec .section-inner .form .form-contents label.error,
  .form-sec .section-inner .thanks .form-contents label.error {
    padding-left: 0;
  }
}
.form-sec .section-inner .form .form-contents .form-label,
.form-sec .section-inner .thanks .form-contents .form-label {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .form-sec .section-inner .form .form-contents .form-label,
  .form-sec .section-inner .thanks .form-contents .form-label {
    flex-direction: column;
  }
}
.form-sec .section-inner .form .form-contents .form-label h3,
.form-sec .section-inner .thanks .form-contents .form-label h3 {
  width: 200px;
  text-align: right;
  margin-right: 20px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.form-sec .section-inner .form .form-contents .form-label h3.adjust,
.form-sec .section-inner .thanks .form-contents .form-label h3.adjust {
  padding-right: 50px;
}
@media screen and (max-width: 767px) {
  .form-sec .section-inner .form .form-contents .form-label h3.adjust,
  .form-sec .section-inner .thanks .form-contents .form-label h3.adjust {
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .form-sec .section-inner .form .form-contents .form-label h3,
  .form-sec .section-inner .thanks .form-contents .form-label h3 {
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 10px;
  }
}
.form-sec .section-inner .form .form-contents .form-label h3 span,
.form-sec .section-inner .thanks .form-contents .form-label h3 span {
  color: white;
  font-weight: normal;
  font-size: 0.8em;
  background-color: #f07a05;
  margin-left: 10px;
  display: block;
  padding-left: 5px;
  padding-right: 5px;
}
.form-sec .section-inner .form .form-contents .form-label h3 span.hidden,
.form-sec .section-inner .thanks .form-contents .form-label h3 span.hidden {
  visibility: hidden;
}
.form-sec .section-inner .form .form-contents .form-label .select-wrapper,
.form-sec .section-inner .thanks .form-contents .form-label .select-wrapper {
  width: calc(100% - 220px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .form-sec .section-inner .form .form-contents .form-label .select-wrapper,
  .form-sec .section-inner .thanks .form-contents .form-label .select-wrapper {
    width: 100%;
  }
}
.form-sec .section-inner .form .form-contents .form-label .select-wrapper::before,
.form-sec .section-inner .thanks .form-contents .form-label .select-wrapper::before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url(../images/select-arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 16px;
  top: 16px;
  pointer-events: none;
}
.form-sec .section-inner .form .form-contents .form-label input,
.form-sec .section-inner .thanks .form-contents .form-label input {
  width: calc(100% - 220px);
}
@media screen and (max-width: 767px) {
  .form-sec .section-inner .form .form-contents .form-label input,
  .form-sec .section-inner .thanks .form-contents .form-label input {
    width: 100%;
  }
}
.form-sec .section-inner .form .form-contents .form-label input::-moz-placeholder, .form-sec .section-inner .thanks .form-contents .form-label input::-moz-placeholder {
  color: #c7c7c7;
}
.form-sec .section-inner .form .form-contents .form-label input::placeholder,
.form-sec .section-inner .thanks .form-contents .form-label input::placeholder {
  color: #c7c7c7;
}
.form-sec .section-inner .form .form-contents .form-label input,
.form-sec .section-inner .form .form-contents .form-label select,
.form-sec .section-inner .thanks .form-contents .form-label input,
.form-sec .section-inner .thanks .form-contents .form-label select {
  border: 1px solid lightgray;
  padding: 10px;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border-radius: 5px;
  color: black;
}
.form-sec .section-inner .form .form-contents .form-label select,
.form-sec .section-inner .thanks .form-contents .form-label select {
  width: 100%;
  background-color: #fff;
}
.form-sec .section-inner .form .thanks-desc,
.form-sec .section-inner .thanks .thanks-desc {
  text-align: center;
  text-decoration: none !important;
  pointer-events: none;
  margin-bottom: 20px;
}
.form-sec .section-inner .form .thanks-desc a,
.form-sec .section-inner .thanks .thanks-desc a {
  text-decoration: none !important;
  pointer-events: none;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .form-sec .section-inner .form .thanks-desc,
  .form-sec .section-inner .thanks .thanks-desc {
    font-size: 14px;
    margin-bottom: 5px;
  }
}
.form-sec .section-inner .form .thanks-desc.mail,
.form-sec .section-inner .thanks .thanks-desc.mail {
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .form-sec .section-inner .form .thanks-desc.mail,
  .form-sec .section-inner .thanks .thanks-desc.mail {
    font-size: 14px;
  }
}
.form-sec .section-inner .form .thanks-desc.tel,
.form-sec .section-inner .thanks .thanks-desc.tel {
  font-size: 22px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto 0;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .form-sec .section-inner .form .thanks-desc.tel,
  .form-sec .section-inner .thanks .thanks-desc.tel {
    font-size: 14px;
    margin-top: 10px;
  }
}
.form-sec .section-inner .form .thanks-desc.tel a,
.form-sec .section-inner .thanks .thanks-desc.tel a {
  text-decoration: none;
  color: #000;
}
.form-sec .section-inner .form .thanks-desc.time,
.form-sec .section-inner .thanks .thanks-desc.time {
  margin-top: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .form-sec .section-inner .form .thanks-desc.adjust,
  .form-sec .section-inner .thanks .thanks-desc.adjust {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .form-sec .section-inner .form .sp-font,
  .form-sec .section-inner .thanks .sp-font {
    font-size: 12px;
  }
}
.form-sec .section-inner .form .line-wrapper,
.form-sec .section-inner .thanks .line-wrapper {
  width: 570px;
  margin: 0 auto 35px;
  position: relative;
}
.form-sec .section-inner .form .line-wrapper::before,
.form-sec .section-inner .thanks .line-wrapper::before {
  content: "";
  width: 800px;
  height: 1px;
  position: absolute;
  background-color: lightgray;
  top: 0px;
  left: calc(50% - 400px);
}
@media screen and (max-width: 800px) {
  .form-sec .section-inner .form .line-wrapper::before,
  .form-sec .section-inner .thanks .line-wrapper::before {
    width: 300px;
    left: calc(50% - 150px);
  }
}
@media screen and (max-width: 767px) {
  .form-sec .section-inner .form .line-wrapper,
  .form-sec .section-inner .thanks .line-wrapper {
    max-width: 350px;
    width: 100%;
  }
}
.form-sec .section-inner .form .line-wrapper h5,
.form-sec .section-inner .thanks .line-wrapper h5 {
  font-size: 28px;
  text-align: center;
  padding-top: 20px;
  margin-bottom: 20px;
  margin-top: 10px;
}
.form-sec .section-inner .form .line-wrapper h5 .bb,
.form-sec .section-inner .thanks .line-wrapper h5 .bb {
  background: linear-gradient(transparent 70%, yellow 0%);
}
@media screen and (max-width: 767px) {
  .form-sec .section-inner .form .line-wrapper h5,
  .form-sec .section-inner .thanks .line-wrapper h5 {
    font-size: 20px;
    padding-top: 15px;
    margin-bottom: 10px;
    white-space: nowrap;
  }
}
.form-sec .section-inner .form .line-wrapper h5 .line-span,
.form-sec .section-inner .thanks .line-wrapper h5 .line-span {
  color: #00ae00;
}
.form-sec .section-inner .form .line-wrapper ul,
.form-sec .section-inner .thanks .line-wrapper ul {
  list-style-type: none;
  margin-bottom: 35px;
}
.form-sec .section-inner .form .line-wrapper ul li,
.form-sec .section-inner .thanks .line-wrapper ul li {
  list-style: none;
  font-size: 20px;
  position: relative;
  padding-left: 1em;
}
.form-sec .section-inner .form .line-wrapper ul li::before,
.form-sec .section-inner .thanks .line-wrapper ul li::before {
  content: "・";
  left: 0;
  top: 0;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .form-sec .section-inner .form .line-wrapper ul,
  .form-sec .section-inner .thanks .line-wrapper ul {
    padding-left: 20px;
  }
  .form-sec .section-inner .form .line-wrapper ul li,
  .form-sec .section-inner .thanks .line-wrapper ul li {
    font-size: 12px;
  }
}
@media screen and (min-width: 767px) {
  .form-sec .section-inner .form .pc_none,
  .form-sec .section-inner .thanks .pc_none {
    display: none;
  }
}
.form-sec .section-inner .form .backtotop-wrapper,
.form-sec .section-inner .thanks .backtotop-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.form-sec .section-inner .form .backtotop-wrapper a,
.form-sec .section-inner .thanks .backtotop-wrapper a {
  border: 1px solid #ec7e24;
  text-decoration: none;
  color: #ec7e24;
  font-weight: bold;
  padding: 15px 40px;
  font-size: 20px;
  border-radius: 10px;
  transition: all 0.3s;
  position: relative;
  top: 0;
}
.form-sec .section-inner .form .backtotop-wrapper a:hover,
.form-sec .section-inner .thanks .backtotop-wrapper a:hover {
  top: -3px;
}
@media screen and (max-width: 767px) {
  .form-sec .section-inner .form .backtotop-wrapper a,
  .form-sec .section-inner .thanks .backtotop-wrapper a {
    font-size: 18px;
  }
}
.form-sec .section-inner .form .line-btn-wrapper,
.form-sec .section-inner .thanks .line-btn-wrapper {
  display: flex;
  justify-content: center;
}
.form-sec .section-inner .form .line-btn,
.form-sec .section-inner .thanks .line-btn {
  width: 300px;
  height: 70px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #00c300;
  text-decoration: none;
  padding-right: 20px;
  box-shadow: 0px 5px 1px #029902;
  margin-top: 20px;
  transition: all 0.3s;
  position: relative;
  top: 0;
}
@media screen and (min-width: 768px) {
  .form-sec .section-inner .form .line-btn:hover,
  .form-sec .section-inner .thanks .line-btn:hover {
    top: -3px;
    box-shadow: 0px 8px 1px #029902;
  }
  .form-sec .section-inner .form .line-btn:active,
  .form-sec .section-inner .thanks .line-btn:active {
    top: 5px;
    box-shadow: 0 0 0 #029902;
  }
}
.form-sec .section-inner .form .line-btn img,
.form-sec .section-inner .thanks .line-btn img {
  width: 80px;
  height: auto;
}
.form-sec .section-inner .form .line-btn span,
.form-sec .section-inner .thanks .line-btn span {
  color: white;
  font-size: 26px;
}
.form-sec .section-inner .form .submit-wrapper,
.form-sec .section-inner .thanks .submit-wrapper {
  margin-top: 75px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .form-sec .section-inner .form .submit-wrapper,
  .form-sec .section-inner .thanks .submit-wrapper {
    margin-top: 30px;
  }
}
.form-sec .section-inner .form .submit-wrapper .btn-wrapper,
.form-sec .section-inner .thanks .submit-wrapper .btn-wrapper {
  position: relative;
}
.form-sec .section-inner .form .submit-wrapper .btn-wrapper::before,
.form-sec .section-inner .thanks .submit-wrapper .btn-wrapper::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background-image: url(../images/cta-trial-button-arrow.svg);
  top: calc(50% - 16px);
  right: 20px;
  pointer-events: none;
}
.form-sec .section-inner .form .submit-wrapper input,
.form-sec .section-inner .thanks .submit-wrapper input {
  cursor: pointer;
  width: 300px;
  height: 80px;
  background: linear-gradient(0deg, #0b9f5b 0%, #78af0e 100%);
  border: none;
  box-shadow: 0px 5px 1px #055630;
  border-radius: 20px;
  font-size: 30px;
  letter-spacing: 0.05em;
  font-weight: bold;
  color: white;
  transition: all 0.4s;
  position: relative;
  top: 0;
}
@media screen and (max-width: 767px) {
  .form-sec .section-inner .form .submit-wrapper input,
  .form-sec .section-inner .thanks .submit-wrapper input {
    height: 65px;
    font-size: 26px;
  }
}
.form-sec .section-inner .form .submit-wrapper input.disabled,
.form-sec .section-inner .thanks .submit-wrapper input.disabled {
  opacity: 0.7;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .form-sec .section-inner .form .submit-wrapper input:hover,
  .form-sec .section-inner .thanks .submit-wrapper input:hover {
    top: -3px;
    box-shadow: 0px 8px 1px #055630;
  }
  .form-sec .section-inner .form .submit-wrapper input:active,
  .form-sec .section-inner .thanks .submit-wrapper input:active {
    top: 8px;
    box-shadow: 0 0 1px #055630;
  }
}

.yureru-j {
  animation: yureru-j 2.5s infinite;
}

@keyframes yureru-j {
  0% {
    transform: translate(0px, 3px);
  }
  5% {
    transform: translate(0px, -3px);
  }
  10% {
    transform: translate(0px, 3px);
  }
  15% {
    transform: translate(0px, -3px);
  }
  20% {
    transform: translate(0px, 3px);
  }
  25% {
    transform: translate(0px, -3px);
  }
  30% {
    transform: translate(0px, 0px);
  }
}
.cta-entry .wrapper .inner .factor .button::after {
  display: none;
}

.cta-entry .wrapper .inner .factor {
  margin-top: 70px;
}

/* breakpoints *//*# sourceMappingURL=style.css.map */
/* @media screen and (min-width: 767px) {
  .tx-20 {
    font-size: 20px !important;
  }
} */

#carousel-area {
  background-color: #fefae7;
  padding: 3% 5%;
}

#carousel-area .carousel_title {
  color: #fff;
  background: linear-gradient(90deg, #f35c19 0%, #ffd52e 100%);
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  padding: 5px 10px;
  margin: 0 auto;
  font-size: 40px;
}
.carousel-container {
  position: relative;
  width: 100%; /* 画面幅に合わせる */
  max-width: 1100px; /* 最大幅を設定して画像が大きすぎないように調整 */
  margin: auto;
  overflow: hidden;
  padding: 0 150px;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-item {
  min-width: 100%;
  padding: 30px;
  /* flex: 0 0 auto; */
}

.carousel img {
  width: 100%;
  height: auto; /* 画像の縦横比を保持 */
  max-height: 550px; /* 高さ制限を設定 */
  display: block;
  object-fit: cover; /* 必要に応じてカットしてフィットさせる */
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ffffff80;
  color: orange;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.carousel-button.prev {
  left: 10px;
}

.carousel-button.next {
  right: 10px;
}

@media screen and (max-width: 767px) {
  #carousel-area {
    padding: 10% 1%;
  }
  .carousel-container {
    padding: 0 30px; /* スマホで左右が見切れるように縮小 */
  }
  .carousel-item {
    min-width: 90%; /* 各スライドが75%で表示されるように */
    padding: 15px;
  }

  #carousel-area .carousel_title {
    font-size: min(6.9vw, 40px);
  }
}

.floating {
  width: 100%;
  text-align: center;
  position: relative;
  animation-name: cta-entry-button-updown; /* アニメーション名の指定 */
  animation-delay: 0s; /* アニメーションの開始時間指定 */
  animation-duration: 2s; /* アニメーション動作時間の指定 */
  animation-timing-function: ease-in-out; /* アニメーションの動き指定（徐々に早く）*/
  animation-iteration-count: infinite;
}