@charset "UTF-8";
/* calc スタイル
======================================================================================== */
/* html {
  background: #f5f0e1;
} */

#GPH260227DONUT {
  --font-credit: "heebo", sans-serif;
  --font-fw-light: 300;
  --font-fw-regular: 400;
  --font-fw-medium: 500;
  --font-fw-medium: 600;
  --color-navy: #0f2c45;
  --color-lightblue: #7193a9;
  --color-darkbrown: #5b3322;
  --color-brown: #b98a68;
  --color-beige: #f0ead8;
  --color-yellow: #f8d792;
  --color-purple: #8ba1c0;
  --color-white: #fff;

  --pc-width: 1280;
  --sp-width: 650;
  --pc-artboard-width: 650;
  --sp-artboard-width: 650;
  --formula: calc(var(--variable) * var(--ratio)); /*SP→PC 可変設定*/
  --formula_pc: calc(var(--variable) * 1); /*PC 1400以上は固定*/

  position: relative;
  z-index: 1;
  font-style: normal;
  width: 100%;
  font-feature-settings: "palt";
}


/* @media screen and (min-width: 1921px) {
  #GPH260227DONUT {
    --ratio: 1px;
  }
} */

@media screen and (min-width: 560px) {
  #GPH260227DONUT {
    --ratio: calc(var(--pc-artboard-width) / var(--sp-artboard-width)); 
    --variable: 1px;
  }

  :root {
    --lpSetSize: calc(1px * calc(650 / 650));
    /* --lpSetSize: 0.56px; */
  }
}

/* PC画面幅 768～1400px 可変 */
/* @media (min-width: 560px) and (max-width: 1400px) {
  #GPH260227DONUT {
    --variable: calc(100vw / var(--pc-width));
  }

  :root {
    --lpSetSize: (100vw / 650) * 0.56;
  }
} */

/* SP画面幅 559px以下 可変 */
@media screen and (max-width: 649px) {
  #GPH260227DONUT {
    --reference-value: .1rem;
    --dsesktop-rate: calc(100vw / 1920);
    --rate: calc(100cqi / 650);
    opacity: 1;
/* 
    --ratio: 1;
    --variable: calc(100vw / var(--sp-width)); */
  }

  :root {
    --lpSetSize: (100vw / 650);
  }
}


/* ベーススタイル
======================================================================================== */

.main-area * {
  box-sizing: border-box;
}
.main-area img {
  height: auto;
  opacity: 1;
  width: 100%;
}
.main-area a {
  text-decoration: none;
}
.main-area picture {
  display: block;
}
.main-area p, .main-area ul, .main-area ol, .main-area dl {
  list-style: none;
}

/* @media (min-width: 560px) and (max-width: 1400px) {
  .contents_area{
    max-width: calc(650 * var(--lpSetSize));
  }
} */

@media screen and (min-width: 560px) {
  #GPH260227DONUT{
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
    position: relative;
    overflow-y: clip;
    height: 100%;
    background: var(--color-beige);
  }

  .contents_area{
    position: relative;
    z-index: 10;
    width: 100%;
    margin: auto;
    overflow-x: clip;
    max-width: 650px;
    grid-row: 1 / 2;
    grid-column: 1 / 2;
    z-index: 1;
  }

  .spOnly {
    display: none;
  }

  .pcOnly {
    display: block;
  }

  .fixed-bg{
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    background-image: url(../img/fixed-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
  }

  #style-archive.style-archive{
    position: relative;
    z-index: 1;
    background: #fff;
  }
  #Foot{
    position: relative;
    background: #fff;
    pointer-events: none;
    z-index: 1001;
  }
  #footer{
    pointer-events: all;
  }
  .modal.hide{
    pointer-events: none;
  }
  .modal.hide.open.show{
    pointer-events: all;
  }
  #Header{
    z-index: 999;
  }

  .breadcrumb__wrapper{
    position: relative;
    width: 100%;
    background-color: #fff;
    z-index: 2;
  }
}

@media screen and (max-width: 559px) {
  #GPH260227DONUT{
    background-color: var(--color-white)!important;
    overflow-x: clip;
  }

  .spOnly {
    display: block;
  }

  .pcOnly {
    display: none;
  }

  /* Chrome, Safari, EdgeなどのWebKit系ブラウザ */
  ::-webkit-scrollbar {
    display: none;
  }

  /* Firefox */
  html {
    scrollbar-width: none;
    overflow-x: clip;
  }

  /* IE、Edge */
  body {
    -ms-overflow-style: none;
  }

  .contents_area{
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
  }
}

  /* Chrome, Safari, EdgeなどのWebKit系ブラウザ */
_::-webkit-full-page-media, _:future, :root .custom-acc-container .custom-acc-content {
  /* max-height: calc(170 * var(--lpSetSize)) !important; */
}

_::-webkit-full-page-media, _:future, :root .custom-acc-container .custom-acc-content.open {
  /* max-height: calc(526 * var(--lpSetSize)) !important; */
}

_::-webkit-full-page-media, _:future, :root .custom-acc-container .custom-acc-btn {
  /* top: calc(50 * var(--lpSetSize)); */
  /* padding-top: calc(20 * var(--lpSetSize)); */
}


/* ==============================
  共通
============================== */
.section_img__wrapper{
  position: relative;
  z-index: 1;
}

.creditLinks__cont{
  position: absolute;
  z-index: 2;
}

.creditLinks__cont{
  display: flex;
  flex-direction: column;
  row-gap: calc(17 * var(--lpSetSize));
}

.credit-item a{
  font-size: calc(18 * var(--lpSetSize));
  font-family: var(--font-credit);
  font-weight: var(--font-fw-regular);
  color: var(--color-navy);
  letter-spacing: 0.02em;
  line-height: 1;
  /* word-spacing: calc(5 * var(--lpSetSize)); */
  border-radius: calc(15 * var(--lpSetSize));
  background-color: var(--color-white);
  padding: calc(3 * var(--lpSetSize)) calc(7 * var(--lpSetSize));
}

.circle_txt__wrapper{
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.circle-txt{
  position: relative;
  width: calc(173 * var(--lpSetSize));
  height: calc(173 * var(--lpSetSize));
}

.circle-txt::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: contain;
}

.section_img-square,
.section_img-circle{
  width: calc(550 * var(--lpSetSize));
  overflow: hidden;
}

.section_img-square{
  position: relative;
}

.section_img-square.js-show.zoomOut::before{
  content: "";
  position: absolute;
  opacity: 0;
  width: 100%;
  height: calc(100% - 1px);
  z-index: -1;
  top: 0;
  left: 0;
  background-color: #fff;
  transition: 1.2s ease-in;
}

.section_img-square.js-show.zoomOut.view::before{
  opacity: 1;
}

.section_img-circle{
  width: calc(550 * var(--lpSetSize));
  height: calc(550 * var(--lpSetSize));
  border-radius: 50%;
}

.circle-card svg{
  width: calc(550 * var(--lpSetSize));
  height: calc(550 * var(--lpSetSize));
}



/* ==============================
  section01
============================== */
.section01{
  background-color: var(--color-brown);
}

.mv__wrapper{
  position: relative;
  z-index: 1;
  width: calc(550 * var(--lpSetSize));
  margin: 0 auto;
  padding: calc(51 * var(--lpSetSize)) 0 calc(76 * var(--lpSetSize));
}

.mv__wrapper .square-card{
  top: calc(26 * var(--lpSetSize));
  right: calc(-25 * var(--lpSetSize));
}

.mv__wrapper .square-card svg{
  width: calc(550 * var(--lpSetSize))!important;
  height: calc(769 * var(--lpSetSize))!important;
}

.mv__wrapper .mv_subttl01{
  position: absolute;
  z-index: 2;
  top: calc(41.5 * var(--lpSetSize));
  left: calc(35.6 * var(--lpSetSize));
  width: calc(26.5986 * var(--lpSetSize));
  height: calc(278.5518 * var(--lpSetSize));
  pointer-events: none;
}

.mv__wrapper .mv_subttl02{
  position: absolute;
  z-index: 2;
  bottom: calc(119.5 * var(--lpSetSize));
  right: calc(-7.6 * var(--lpSetSize));
  width: calc(20 * var(--lpSetSize));
  height: calc(263.9971 * var(--lpSetSize));
  pointer-events: none;
}

.mv__wrapper .mv_title{
  position: absolute;
  z-index: 2;
  bottom: calc(117.2 * var(--lpSetSize));
  left: calc(16.4 * var(--lpSetSize));
  width: calc(496.1895 * var(--lpSetSize));
  height: calc(142.1978 * var(--lpSetSize));
  pointer-events: none;
}

/* section_img__wrapper.--01 ___________________________*/
.section_img__wrapper.--01{
  margin-bottom: calc(90 * var(--lpSetSize));
}

.section_img__wrapper.--01::before{
  content: "";
  position: absolute;
  z-index: -1;
  width: calc(600 * var(--lpSetSize));
  height:calc(715.8436 * var(--lpSetSize));
  right: 0;
  bottom: calc(-41.5 * var(--lpSetSize));
  background-color: var(--color-purple);
}

.section_img__wrapper.--01 .square-card {
  top: calc(-25 * var(--lpSetSize));
  left: calc(25 * var(--lpSetSize));
}

.section_img__wrapper.--01 .square-card svg{
  width: calc(550 * var(--lpSetSize));
  height: calc(700 * var(--lpSetSize));
}

.section_img__wrapper.--01 .square-line{
  stroke: var(--color-white);
}

.section_img__wrapper.--01 .section_img-square{
  margin-right: auto;
  margin-left: 0;
}

.section_img__wrapper.--01 .circle_txt__wrapper{
  top: calc(-12 * var(--lpSetSize));
  right: calc(92 * var(--lpSetSize));
}

.section_img__wrapper.--01 .circle-txt::after{
  width: calc(106.8527 * var(--lpSetSize));
  height: calc(104.6213 * var(--lpSetSize));
  background-image: url(../img/img01-donuts.png);
}

.section_img__wrapper.--01 .creditLinks__cont{
  align-items: flex-end;
  bottom: calc(122 * var(--lpSetSize));
  right: calc(64 * var(--lpSetSize));
}

.section_img__wrapper.--01 .creditLinks__cont .credit-item:nth-of-type(2){
  transform: translateX(calc(-2 * var(--lpSetSize)));
}

.section_img__wrapper.--01 .creditLinks__cont .credit-item:nth-of-type(2) a{
  padding: calc(3 * var(--lpSetSize)) calc(12 * var(--lpSetSize)) calc(4 * var(--lpSetSize)) calc(15 * var(--lpSetSize));
}

/* section_img__wrapper.--02 ___________________________*/
.section_img__wrapper.--02{
  margin-bottom: calc(56.5 * var(--lpSetSize));
}

.section_img__wrapper.--02 .circle-card{
  top: calc(25 * var(--lpSetSize));
  right: calc(25 * var(--lpSetSize));
}

.section_img__wrapper.--02 .circle_txt__wrapper{
  top: calc(-26.8 * var(--lpSetSize));
  left: calc(41.5 * var(--lpSetSize));
}

.section_img__wrapper.--02 .circle-txt::after{
  width: calc(106 * var(--lpSetSize));
  height: calc(103.79 * var(--lpSetSize));
  background-image: url(../img/img02-donuts.png);
}

.section_img__wrapper.--02 .section_img-circle{
  margin: 0 auto;
}

.section_img__wrapper.--02 .creditLinks__cont{
  bottom: calc(52 * var(--lpSetSize));
  right: calc(32 * var(--lpSetSize));
}


/* section_img__wrapper.--03 ___________________________*/
.section_img__wrapper.--03{
  margin-bottom: calc(84.5 * var(--lpSetSize));
}

.section_img__wrapper.--03 .square-card {
  top: calc(26 * var(--lpSetSize));
  right: calc(25 * var(--lpSetSize));
}

.section_img__wrapper.--03 .square-card svg{
  width: calc(550 * var(--lpSetSize));
  height: calc(650 * var(--lpSetSize));
}

.section_img__wrapper.--03 .section_img-square{
  margin: 0 auto;
}

.section_img__wrapper.--03 .circle_txt__wrapper{
  top: calc(-28.8 * var(--lpSetSize));
  right: calc(28 * var(--lpSetSize));
}

.section_img__wrapper.--03 .circle-txt::after{
  width: calc(105 * var(--lpSetSize));
  height: calc(102.81 * var(--lpSetSize));
  background-image: url(../img/img03-donuts.png);
}

.section_img__wrapper.--03 .creditLinks__cont{
  bottom: calc(83 * var(--lpSetSize));
  left: calc(30 * var(--lpSetSize));
}

.section_img__wrapper.--03 .credit-item a{
  color: var(--color-white);
  background-color: var(--color-darkbrown);
  padding: calc(3 * var(--lpSetSize)) calc(11 * var(--lpSetSize));
  letter-spacing: 0.05em;
}


/* section_img__wrapper.--04 ___________________________*/
.section_img__wrapper.--04{
  padding-bottom: calc(85.1 * var(--lpSetSize));
}

.section_img__wrapper.--04 .circle-card{
  top: calc(-25 * var(--lpSetSize));
  left: calc(30 * var(--lpSetSize));
}


.section_img__wrapper.--04 .circle-line{
  stroke: var(--color-darkbrown);
}


.section_img__wrapper.--04 .circle_txt__wrapper{
  top: calc(-42.3 * var(--lpSetSize));
  left: calc(35.5 * var(--lpSetSize));
}

.section_img__wrapper.--04 .section_img-circle{
  margin-right: calc(39 * var(--lpSetSize));
  margin-left: auto;
}

.section_img__wrapper.--04 .circle-txt::after{
  width: calc(107 * var(--lpSetSize));
  height: calc(104.77 * var(--lpSetSize));
  background-image: url(../img/img04-donuts.png);
}

.section_img__wrapper.--04 .creditLinks__cont{
  bottom: calc(163 * var(--lpSetSize));
  right: calc(61 * var(--lpSetSize));
}

.section_img__wrapper.--04 .credit-item a{
  color: var(--color-white);
  background-color: var(--color-darkbrown);
  letter-spacing: 0.05em;
  padding: calc(3 * var(--lpSetSize)) calc(11 * var(--lpSetSize));
}


/* ==============================
  section02
============================== */
.section02{
  background-color: var(--color-beige);
}

/* section_img__wrapper.--05 ___________________________*/
.section_img__wrapper.--05{
  margin-bottom: calc(124 * var(--lpSetSize));
}

.section_img__wrapper.--05::before{
  content: "";
  position: absolute;
  z-index: -1;
  top: calc(-57 * var(--lpSetSize));
  left: 0;
  width: calc(600 * var(--lpSetSize));
  height: calc(780.2734 * var(--lpSetSize));
  background-color: var(--color-yellow);
}

.section_img__wrapper.--05 .square-card {
  top: calc(-26 * var(--lpSetSize));
  right: calc(25 * var(--lpSetSize));
}

.section_img__wrapper.--05 .square-card svg{
  width: calc(550 * var(--lpSetSize));
  height: calc(700 * var(--lpSetSize));
}

.section_img__wrapper.--05 .section_img-square{
  margin-right: 0;
  margin-left: auto;
}

.section_img__wrapper.--05 .circle_txt__wrapper{
  top: calc(-46.2 * var(--lpSetSize));
  right: calc(18 * var(--lpSetSize));
}

.section_img__wrapper.--05 .circle-txt::after{
  width: calc(101 * var(--lpSetSize));
  height: calc(101.64 * var(--lpSetSize));
  background-image: url(../img/img05-donuts.png);
}

.section_img__wrapper.--05 .creditLinks__cont{
  bottom: calc(123 * var(--lpSetSize));
  left: calc(57 * var(--lpSetSize));
  row-gap: calc(18 * var(--lpSetSize));
}

.section_img__wrapper.--05 .creditLinks__cont a{
  letter-spacing: 0.045em;
  padding: calc(3 * var(--lpSetSize)) calc(11 * var(--lpSetSize)) calc(3 * var(--lpSetSize)) calc(9 * var(--lpSetSize));
}

.section_img__wrapper.--05 .creditLinks__cont .credit-item:nth-of-type(2){
  transform: translateX(calc(9 * var(--lpSetSize)));
}

/* section_img__wrapper.--06 ___________________________*/
.section_img__wrapper.--06{
  margin-bottom: calc(145 * var(--lpSetSize));
}

.section_img__wrapper.--06::before{
  content: "";
  position: absolute;
  z-index: -1;
  top: calc(-48.4 * var(--lpSetSize));
  right: 0;
  width: calc(600.2382 * var(--lpSetSize));
  height: calc(652.3359 * var(--lpSetSize));
  background-color: var(--color-purple);
}

.section_img__wrapper.--06 .circle-card{
  top: calc(-26 * var(--lpSetSize));
  left: calc(36 * var(--lpSetSize));
}

.section_img__wrapper.--06 .circle_txt__wrapper{
  top: calc(-33.2 * var(--lpSetSize));
  left: calc(40.1 * var(--lpSetSize));
}

.section_img__wrapper.--06 .section_img-circle{
  margin-right: calc(39.3 * var(--lpSetSize));
  margin-left: auto;
}

.section_img__wrapper.--06 .circle-txt::after{
  width: calc(108 * var(--lpSetSize));
  height: calc(105.74 * var(--lpSetSize));
  background-image: url(../img/img06-donuts.png);
}

.section_img__wrapper.--06 .creditLinks__cont{
  align-items: center;
  bottom: calc(241.6 * var(--lpSetSize));
  right: calc(28.7 * var(--lpSetSize));
  row-gap: calc(18 * var(--lpSetSize));
}

.section_img__wrapper.--06 .creditLinks__cont a{
  letter-spacing: 0.034em;
}

.section_img__wrapper.--06 .creditLinks__cont .credit-item:nth-of-type(2) a{
  padding: calc(3 * var(--lpSetSize)) calc(13 * var(--lpSetSize));
}

.section_img__wrapper.--06 .creditLinks__cont .credit-item:nth-of-type(3) a {
  padding: calc(3 * var(--lpSetSize)) calc(6 * var(--lpSetSize)) calc(3 * var(--lpSetSize)) calc(13 * var(--lpSetSize));
}

/* ==============================
  cai_btn__wrapper
============================== */
.cai_btn__wrapper{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(315.37 * var(--lpSetSize));
  margin: 0 auto;
  padding: calc(111.73 * var(--lpSetSize)) 0 calc(73 * var(--lpSetSize));
}

.cai_btn__wrapper::after{
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../img/last-donuts.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: calc(96.44 * var(--lpSetSize));
  height: calc(94.33 * var(--lpSetSize));
}

.cai_btn__wrapper .cai_btn{
  position: relative;
  width: 100%;
  padding-bottom: calc(9.5 * var(--lpSetSize));
}

.cai_btn__wrapper a{
  display: inline-block;
  width: 100%;
}

/* ==============================
  animatiion
============================== */
.background-change-element{
  transition: all 0.4s;
}

/* lineAnimation ___________________________*/

.js-show.view.lineAnimation::after{
  transform: scaleX(1);
}

.js-show.lineAnimation::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-navy);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.5s ease-out;
}


/* stroke animation ___________________________*/
.js-show.view.card {
  position: absolute;
  z-index: 1;
  border-radius: 0;
  pointer-events: none;
}

.js-show.view .line {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: draw 3s ease-in-out forwards;
}

@keyframes draw {
  0% { stroke-dashoffset: 1; }
  50% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 0; opacity: 1; }
}

.line {
  stroke: transparent;
  stroke-width: 2;
  fill: none;
  vector-effect: non-scaling-stroke;
}

.circle-line {
  transform-origin: center;
  stroke: var(--color-white);
  /* rotate(-90deg): 12時の位置から開始
      scaleX(-1): 左右反転させて反時計回りに変更
  */
  transform: rotate(90deg) scaleX(-1);
}

.square-line {
  stroke: var(--color-darkbrown);
}

.js-show .line {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.card svg{
  overflow: visible;
}

/* animation_delay ___________________________*/
.animation_delay01{
  transition-delay: 0.5s;
}

.animation_delay02{
  transition-delay: 0.5s;
}

/* fadeIn ___________________________*/
.js-show.fadeIn{
  opacity: 0;
  transition: all 0.4s;
}

.js-show.fadeIn.view{
  transition-property: opacity, transform;
  transition-duration: 0.5s;
  opacity: 1;
}

/* animation_rotate ___________________________*/
.animation_rotate{
  animation: rotateAnimation 12000ms linear infinite
}

@keyframes rotateAnimation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* zoomOut ___________________________*/
.js-show.zoomOut{
  overflow: hidden;
}

.js-show.zoomOut img{
  opacity: 0;
  transition: 0.75s;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  transform: scale(1.1);
}

.js-show.zoomOut.view img{
  opacity: 1;
  transform: none;
}

/* slideIn ___________________________*/
/* .slide-wrap {
  overflow: hidden;
  z-index: 2;
} */

.js-show.slideIn {
  opacity: 0;
  /* --char-index: 0 */
  /* transform: translateX(-20px);  */

  -webkit-mask-image: linear-gradient(to right, #000 0%, #000 33%, transparent 66%, transparent 100%);
  mask-image: linear-gradient(to right, #000 0%, #000 33%, transparent 66%, transparent 100%);
  -webkit-mask-size: 300% 100%;
  mask-size: 300% 100%;
  -webkit-mask-position: 100% 0;
  mask-position: 100% 0;

  transition: 
      opacity 1.6s cubic-bezier(0.77, 0, 0.175, 1),
      transform 1.6s cubic-bezier(0.77, 0, 0.175, 1),
      mask-position 2.4s cubic-bezier(0.77, 0, 0.175, 1),
      -webkit-mask-position 2.4s cubic-bezier(0.77, 0, 0.175, 1);
  /* transition-delay: calc(0.2s * var(--char-index, 0)); */

  z-index: 2;
}

.js-show.slideIn.view {
    opacity: 1;
    transform: translateX(0);
    -webkit-mask-position: 0% 0;
    mask-position: 0% 0;
}

.js-show.slideIn img {
    width: 100%;
    height: auto;
    display: block;
}


/* _________________ slideIn-vertical */
.js-show.slideIn-vertical {
  opacity: 0;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 33%, transparent 66%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 33%, transparent 66%, transparent 100%);

  -webkit-mask-size: 100% 300%;
  mask-size: 100% 300%;
  -webkit-mask-position: 0 100%;
  mask-position: 0 100%;

  transition: 
      opacity 2s cubic-bezier(0.77, 0, 0.175, 1),
      transform 2s cubic-bezier(0.77, 0, 0.175, 1),
      mask-position 3.4s cubic-bezier(0.77, 0, 0.175, 1),
      -webkit-mask-position 3.4s cubic-bezier(0.77, 0, 0.175, 1);

  z-index: 2;
}

.js-show.slideIn-vertical.view {
    opacity: 1;
    transform: translateY(0);
    -webkit-mask-position: 0 0%;
    mask-position: 0 0%;
}
