@charset "UTF-8";
/*
.blink {
  -webkit-animation: blink 1s ease infinite;
  animation: blink 1s ease infinite;
}
@-webkit-keyframes blink {
  0% {color: #000000;}
  50% {color: $blueBT;}
  100% {color: $key;}
}
@keyframes blink {
  0% {color: #000000;}
  50% {color: $blueBT;}
  100% {color: $key;}
}
*/
/*!
 * ress.css • v2.0.4
 * MIT License
 * github.com/filipelinhares/ress
 */
/* # =================================================================
   # Global selectors
   # ================================================================= */
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  /* Prevent adjustments of font size after orientation changes in iOS */
  word-break: normal;
  -moz-tab-size: 4;
  tab-size: 4;
  font-size: 62.5%;
}

body {
  background-color: #fbfaef;
  color: #1f1e18;
  font-size: 1.6rem;
  letter-spacing: .24rem;
  line-height: 3rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

*,
::before,
::after {
  background-repeat: no-repeat;
  /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  box-sizing: inherit;
}

::before,
::after {
  text-decoration: inherit;
  /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}

::-moz-selection {
  background-color: #ff7a33;
}

::selection {
  background-color: #ff7a33;
}

* {
  padding: 0;
  /* Reset `padding` and `margin` of all elements */
  margin: 0;
}

/* # =================================================================
   # General elements
   # ================================================================= */
hr {
  overflow: visible;
  /* Show the overflow in Edge and IE */
  height: 0;
  /* Add the correct box sizing in Firefox */
}

details,
main {
  display: block;
  /* Render the `main` element consistently in IE. */
}

summary {
  display: list-item;
  /* Add the correct display in all browsers */
}

small {
  font-size: 80%;
  /* Set font-size to 80% in `small` elements */
}

[hidden] {
  display: none;
  /* Add the correct display in IE */
}

abbr[title] {
  border-bottom: none;
  /* Remove the bottom border in Chrome 57 */
  /* Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari */
  text-decoration: underline;
  text-decoration: underline dotted;
}

a {
  background-color: transparent;
  /* Remove the gray background on active links in IE 10 */
  text-decoration: none;
}

a:active,
a:hover {
  outline-width: 0;
  /* Remove the outline when hovering in all browsers */
  text-decoration: none;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* Specify the font family of code elements */
}

pre {
  font-size: 1em;
  /* Correct the odd `em` font sizing in all browsers */
}

b,
strong {
  font-weight: bolder;
  /* Add the correct font weight in Chrome, Edge, and Safari */
}

/* https://gist.github.com/unruthless/413930 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

li {
  list-style-type: none;
}

p {
  text-align: justify !important;
}

input::placeholder,
textarea::placeholder {
  color: #cfcfcf;
}

/* 旧Edge対応 */
input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #cfcfcf;
}

/* IE対応 */
input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #cfcfcf;
}

/* # =================================================================
   # Forms
   # ================================================================= */
input {
  border-radius: 0;
}

/* Replace pointer cursor in disabled elements */
[disabled] {
  cursor: default;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
  /* Correct the cursor style of increment and decrement buttons in Chrome */
}

[type="search"] {
  -webkit-appearance: textfield;
  /* Correct the odd appearance in Chrome and Safari */
  outline-offset: -2px;
  /* Correct the outline style in Safari */
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
  /* Remove the inner padding in Chrome and Safari on macOS */
}

textarea {
  overflow: auto;
  /* Internet Explorer 11+ */
  resize: vertical;
  /* Specify textarea resizability */
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
  /* Specify font inheritance of form elements */
}

optgroup {
  font-weight: bold;
  /* Restore the font weight unset by the previous rule */
}

button {
  overflow: visible;
  /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
}

button,
select {
  text-transform: none;
  /* Firefox 40+, Internet Explorer 11- */
}

/* Apply cursor pointer to button elements */
button,
[type="button"],
[type="reset"],
[type="submit"],
[role="button"] {
  cursor: pointer;
  color: inherit;
}

/* Remove inner padding and border in Firefox 4+ */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/* Replace focus style removed in the border reset above */
button:-moz-focusring,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* Correct the inability to style clickable types in iOS */
}

input::placeholder {
  color: #999;
}

textarea::placeholder {
  color: #999;
}

/* Edge */
input::-ms-input-placeholder {
  color: #999;
}

textarea::-ms-input-placeholder {
  color: #999;
}

/* IE11 & IE10 */
input:-ms-input-placeholder {
  color: #999;
}

textarea:-ms-input-placeholder {
  color: #999;
}

/* Remove the default button styling in all browsers */
button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
}

/* Style select like a standard input */
select {
  -moz-appearance: none;
  /* Firefox 36+ */
  -webkit-appearance: none;
  /* Chrome 41+ */
}

select::-ms-expand {
  display: none;
  /* Internet Explorer 11+ */
}

select::-ms-value {
  color: currentColor;
  /* Internet Explorer 11+ */
}

legend {
  border: 0;
  /* Correct `color` not being inherited in IE 8/9/10/11 */
  color: inherit;
  /* Correct the color inheritance from `fieldset` elements in IE */
  display: table;
  /* Correct the text wrapping in Edge and IE */
  max-width: 100%;
  /* Correct the text wrapping in Edge and IE */
  white-space: normal;
  /* Correct the text wrapping in Edge and IE */
  max-width: 100%;
  /* Correct the text wrapping in Edge 18- and IE */
}

::-webkit-file-upload-button {
  /* Correct the inability to style clickable types in iOS and Safari */
  -webkit-appearance: button;
  color: inherit;
  font: inherit;
  /* Change font properties to `inherit` in Chrome and Safari */
}

/* # =================================================================
   # Specify media element style
   # ================================================================= */
img {
  border-style: none;
  /* Remove border when inside `a` element in IE 8/9/10 */
  -webkit-backface-visibility: hidden;
}

/* Add the correct vertical alignment in Chrome, Firefox, and Opera */
progress {
  vertical-align: baseline;
}

svg:not([fill]) {
  fill: currentColor;
}

/* # =================================================================
   # Accessibility
   # ================================================================= */
/* Hide content from screens but not screenreaders */
@media screen {
  [hidden~="screen"] {
    display: inherit;
  }
  [hidden~="screen"]:not(:active):not(:focus):not(:target) {
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}

/* Specify the progress cursor of updating elements */
[aria-busy="true"] {
  cursor: progress;
}

/* Specify the pointer cursor of trigger elements */
[aria-controls] {
  cursor: pointer;
}

/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled] {
  cursor: default;
}

table, tbody, tr, td {
  border: none;
  border-spacing: 0;
}

.l-wrapper {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  position: relative;
  display: flex;
}

/*縦積み
.l-wrapper {
	width:100%;
	text-align:center;
	margin:0 auto;
	position: relative;
}
*/
/* 
.l-nav{
  a{
     @include text-size_16;
     font-size: 1.6rem;
     letter-spacing: .7rem;
     font-weight: bold;
  }
}


@media screen and (min-width:844px){
  .l-nav{
    padding: 0rem;
    list-style: none;
    ul{
      @include vertical-text;
      -webkit-column-count: auto;
      -moz-column-count: auto;
      -ms-column-count: auto;
      column-count: auto;
      text-align: left;
      padding: 4.8rem 0 3rem;
      height: 220px;
      width: 100%;
      li{
        display: inline-block;
        margin: 0 1.6rem;
        font-weight: bold;
        &:nth-child(1){
          padding: 1.6rem .5rem;
          a{
            color: $blueBT;
            letter-spacing: .6rem;
          }
        }
        a{
          color: $link;
          text-decoration: none !important;
          &:hover{
          }
        }
      }
    }
  }
}
*/
.l-nav a {
  font-size: 1.6rem;
  letter-spacing: .24rem;
  line-height: 2.4rem;
  font-weight: bold;
  color: #fff;
}

@media screen and (min-width: 844px) {
  .l-nav {
    padding: 0rem;
    list-style: none;
  }
  .l-nav ul {
    text-align: left;
    display: inline-block;
    -webkit-text-orientation: upright;
    -moz-text-orientation: upright;
    -ms-text-orientation: upright;
    text-orientation: upright;
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -ms-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    -webkit-column-count: auto;
    -moz-column-count: auto;
    -ms-column-count: auto;
    column-count: auto;
    -webkit-column-count: auto;
    -moz-column-count: auto;
    -ms-column-count: auto;
    column-count: auto;
    text-align: left;
    padding: 3rem 0;
    margin: 0 auto 9rem;
    height: 200px;
    width: auto;
  }
  .l-nav ul li {
    color: #224695;
    font-weight: bold;
    display: inline-block;
    margin: 0 1.2rem;
    font-size: 1.6rem;
    letter-spacing: .5rem;
    height: 160px;
  }
  .l-nav ul li:first-child {
    margin-right: 0;
  }
  .l-nav ul li:last-child {
    margin-left: 0;
    position: relative;
    /*&:after {
            content: '';
            display: inline-block;
            background-image: url(../img/common/soon.png);
            background-size: contain;
            vertical-align: middle;
            width: 32px;
            height: 87px;
            position: absolute;
            right: -4px;
            bottom: -1.6rem;
          }*/
  }
  .l-nav ul li a {
    color: #224695;
    letter-spacing: .6rem;
    text-decoration: none !important;
  }
  .l-nav ul:nth-child(2) {
    text-align: center;
    writing-mode: inherit;
    margin: 0 auto;
    padding: 0 3rem;
    height: auto;
    position: absolute;
    bottom: 6rem;
    left: 0;
    right: 0;
  }
  .l-nav ul:nth-child(2) li {
    margin: 2.4rem;
    height: auto;
  }
  .l-nav ul:nth-child(2) li:last-child {
    margin-left: 0;
  }
  .l-nav ul:nth-child(2) li:last-child:after {
    display: none;
  }
}

.l-header {
  display: none;
}

.l-header-mobile {
  width: 100vw;
  background-color: #fff;
  z-index: 990;
  position: fixed;
  top: 0;
  display: flex;
  padding: 0;
  transition: all 0.6s ease 0s;
}

.l-header-mobile div {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 90vw;
  margin: 0 auto;
  padding: 1rem 0;
}

.l-header-mobile div h1 {
  margin: 0 auto;
  width: 160px;
}

.l-header-mobile div h1 a {
  display: inline-block;
}

.l-header-mobile div h1 a img {
  width: 100%;
  vertical-align: middle;
}

.l-header-mobile-menu {
  display: none;
  background-color: #224695;
  color: #fff;
  width: 100%;
  height: 100vh;
  padding: 6rem 1.6rem 0;
  position: fixed;
  top: 0;
  z-index: 1000;
}

.l-header-mobile-menu .l-nav {
  padding: 0;
  list-style: none;
}

.l-header-mobile-menu ul {
  padding: 0;
  writing-mode: inherit;
  text-align: center;
}

.l-header-mobile-menu ul li {
  height: auto;
  width: 100%;
  margin: 0 0 3.2rem 0;
}

.l-header-mobile-menu ul li:nth-child(1) {
  text-align: center;
  padding: 0;
  height: auto;
}

.l-header-mobile-menu ul li a {
  color: #fff;
}

.l-header-mobile-menu ul li:last-child {
  padding: 1rem 2rem;
  border: 2px solid #fff;
  color: #fff;
  border-radius: .8rem;
  width: 180px;
  margin: 0 auto;
}

/* 縦積み
@media screen and (min-width:844px){
  .l-header{
    width: 100vw;
    background-color: $white;
    display: flex;
    padding: 0;
    margin: 0 0 0;
    position: relative;
    transition: all 600ms 0s ease;
    z-index: 997;
    div{
      display: flex;
      align-items: center;
      justify-content: flex-end;
      width: 88vw;
      margin: 0 auto;
      h1{
        margin-right: auto;
      }
    }
  }
  .l-header-mobile, .l-header-mobile-menu{
    display: none;
  }
}
*/
@media screen and (min-width: 844px) {
  .l-header {
    width: 22vw;
    min-width: 300px;
    height: 100vh;
    background-color: #fff;
    z-index: 777;
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    padding: 6rem 0;
    order: 2;
  }
  .l-header div {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    position: relative;
  }
  .l-header div h1 {
    margin-right: auto;
    margin: 0 auto 7rem;
  }
  .l-header .l-nav p {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
  }
  .l-header .l-nav p a {
    padding: 1rem 2rem;
    color: #224695;
    text-align: center;
    margin: 0 auto;
    font-size: 1.2rem;
    font-weight: normal;
    display: block;
  }
  .l-header small {
    color: #224695;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    letter-spacing: .24rem;
  }
  .l-header-mobile, .l-header-mobile-menu {
    display: none;
  }
}

.l-section {
  width: 88vw;
  margin: 0 auto;
}

.l-section__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 0 10rem;
}

.l-section__inner header img {
  height: 19px;
  width: auto;
  margin: 0 auto 3.2rem;
}

.l-section__title-img {
  height: 19px;
  width: auto;
  margin: 0 auto rem;
}

.l-section__headline {
  font-size: 4.8rem;
  text-align: left;
  letter-spacing: 2rem;
  line-height: 8.2rem;
  height: auto;
}

@media screen and (min-width: 844px) {
  .l-section__inner header img {
    margin: 0 auto 4rem;
  }
  .l-section__btn {
    border: 2px solid #224695;
    color: #224695;
    text-align: center;
    display: block;
    width: fit-content;
    font-size: 1.8rem;
    font-weight: bold;
    border-radius: .8rem;
    text-decoration: none;
  }
  .l-section__headline {
    font-size: 4.8rem;
    text-align: left;
    display: inline-block;
    -webkit-text-orientation: upright;
    -moz-text-orientation: upright;
    -ms-text-orientation: upright;
    text-orientation: upright;
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -ms-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    -webkit-column-count: auto;
    -moz-column-count: auto;
    -ms-column-count: auto;
    column-count: auto;
    transition: all 600ms 0s ease;
    text-align: left;
    letter-spacing: 2rem;
    line-height: 8.2rem;
    height: auto;
  }
}

.l-page {
  width: 78vw;
  margin-left: 0;
}

@media screen and (min-width: 844px) {
  .l-page {
    width: 78vw;
    margin-left: 0;
  }
}

.l-sidemenu {
  position: relative;
  z-index: 10;
  margin-left: 0;
}

.l-sidemenu img {
  margin: 0 0 4rem;
}

/*　
.l-main{
  background-color: $offwhite;
	position: relative;
	z-index: 10;
  width: 100%;
  margin-left: 0;
  padding: 7.4rem 0 0 ;
}

@media screen and (min-width:844px){
  .l-main{
    padding: 0 0;
  }
}
*/
.l-main {
  background-color: #fbfaef;
  position: relative;
  z-index: 10;
  width: 100vw;
  margin-left: 0;
  padding: 0;
  overflow: hidden;
}

@media screen and (min-width: 844px) {
  .l-main {
    width: 78vw;
    overflow: inherit;
  }
}

.l-footer {
  width: 100vw;
  color: #1f1e18;
  z-index: 1;
  position: relative;
  padding: 0 0 10rem;
}

.l-footer-inner {
  width: 94vw;
  margin: 0 auto;
  font-size: 1.2rem;
  text-align: center;
}

.l-footer .l-nav {
  display: none;
  padding: 0rem 3rem;
  list-style: none;
}

.l-footer .l-nav ul {
  font-size: 1.4rem;
  text-align: left;
  padding: 3rem 0;
}

.l-footer .l-nav ul li {
  display: inline-block;
  margin: 0 2.6rem;
  font-weight: bold;
  letter-spacing: .8rem;
}

.l-footer .l-nav ul li a {
  color: #fff;
  text-decoration: none !important;
}

.l-footer-nav {
  background-color: #224695;
  cursor: pointer;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 100;
  padding: 1rem 1.6rem;
  transition: all 600ms 0s ease;
}

.l-footer-nav .l-nav {
  text-align: center;
  color: #fff;
}

.l-footer-nav .l-nav a img {
  vertical-align: middle;
  margin: -0.3rem .4rem 0 0;
}

@media screen and (min-width: 844px) {
  .l-footer {
    display: none;
  }
  .l-footer-nav {
    display: none;
  }
  /*
  .l-footer{
    padding: 6rem 0;
    &-inner{
      justify-content: space-between;
      margin: 0 auto;
      width: 88vw;
    }
    &__nav{
      display: block;
      padding: 0rem 3rem;
      list-style: none;
      font-size: 1.4rem;
      ul{
        text-align: left;
        padding: 0;
        li{
          display: inline-block;
          margin: 0 0 0 3.2rem;
          font-weight: bold;
          letter-spacing: .4rem;
          a{
            color: $white;
            text-decoration: none !important;
            &:hover{

            };
          }
        }
      }
    }
  }
  */
}

.c-logo-header {
  /*paddinng: 0;
  position: absolute;
  right: 0;
  left: 0;*/
}

.c-logo-header img {
  width: 255px;
}

.c-btn {
  text-align: center;
  display: inline-block;
  width: fit-content;
  font-weight: bold;
  letter-spacing: .4rem;
  border: 3px solid #224695;
  background-color: #ff7a33;
  color: #224695;
  border-radius: 0;
  text-decoration: none;
  font-size: 1.8rem;
  transition: all 600ms 0s ease;
}

.c-btn__main {
  -webkit-box-shadow: 6px 6px 0 #224695;
  box-shadow: 6px 6px 0 #224695;
  padding: .4rem 2.4rem;
}

.c-btn__main:hover {
  -webkit-box-shadow: 10px 10px 0 #224695;
  box-shadow: 10px 10px 0 #224695;
}

.c-btn__vertical {
  padding: 2.4rem .5rem;
  -webkit-box-shadow: 6px 6px 0 #224695;
  box-shadow: 6px 6px 0 #224695;
}

.c-btn__vertical:hover {
  -webkit-box-shadow: 10px 10px 0 #224695;
  box-shadow: 10px 10px 0 #224695;
}

.c-btn__sub {
  color: #fff;
  background-color: #224695;
}

.c-btn__ghost {
  border: 4px solid #224695;
  color: #224695;
}

.c-btn__small {
  font-size: 1.6rem;
}

.c-btn__big {
  font-size: 2.2rem;
}

.c-btn__center {
  margin-left: auto;
  margin-right: auto;
}

a.c-btn-textlink {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ff7a33;
  letter-spacing: .48rem;
  position: relative;
}

a.c-btn-textlink__horizontal:after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 18px;
  background-image: url(../img/common/icon-link.svg);
  background-size: contain;
  vertical-align: middle;
  margin: -.4rem 0rem 0rem -1rem;
  overflow: hidden;
}

a.c-btn-textlink__vertical:after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 18px;
  background-image: url(../img/common/icon-link.svg);
  background-size: contain;
  vertical-align: middle;
  margin: -.4rem 0rem 0rem -1rem;
  overflow: hidden;
}

@media screen and (min-width: 844px) {
  a.c-btn-textlink {
    font-size: 2rem;
    font-weight: bold;
    color: #ff7a33;
    letter-spacing: .72rem;
    position: relative;
  }
  a.c-btn-textlink__horizontal:after {
    margin: -.4rem 0rem 0rem -.8rem;
  }
  a.c-btn-textlink__vertical:after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 18px;
    background-image: url(../img/common/icon-link.svg);
    background-size: contain;
    vertical-align: middle;
    margin: -2.4rem 0rem 0rem -.6rem;
    overflow: hidden;
  }
}

.c-label {
  display: inline-block;
  border-radius: .4rem;
  padding: .3rem .4rem;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6rem;
  vertical-align: unset;
  font-weight: normal;
}

.c-label--required {
  background-color: #FF4738;
  color: #fff;
}

.c-pan {
  text-align: center;
  padding: 0;
  align-items: center;
  overflow: hidden;
  width: 100%;
  margin: 10rem auto 4rem;
}

.c-pan__inner a {
  display: inline-block;
}

.c-pan__inner img {
  display: inline-block;
  vertical-align: middle;
}

.c-pan__inner span {
  display: inline-block;
  vertical-align: middle;
}

.p-home-sidemenbtn {
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 1.8rem;
  background-color: #ff7a33;
  padding: 1rem 0;
  position: absolute;
  bottom: 0;
}

.p-home-sidemenbtn a {
  display: inline-block;
}

@media screen and (min-width: 844px) {
  .c-pan {
    text-align: left;
    padding: 8rem 6rem 12rem;
    letter-spacing: .3rem;
    margin: 0 auto;
    width: auto;
  }
  .c-pan h2 {
    display: none;
  }
  .c-pan span {
    font-size: 1.8rem;
  }
  .c-pan a:hover {
    color: #224695;
  }
}

.c-font-vertical-box {
  text-align: left;
  display: inline-block;
  -webkit-text-orientation: upright;
  -moz-text-orientation: upright;
  -ms-text-orientation: upright;
  text-orientation: upright;
  -webkit-writing-mode: vertical-rl;
  -moz-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -ms-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  -webkit-column-count: auto;
  -moz-column-count: auto;
  -ms-column-count: auto;
  column-count: auto;
}

.c-grid {
  display: inherit;
  justify-content: space-between;
}

@media screen and (min-width: 844px) {
  .c-grid {
    display: flex;
    justify-content: space-between;
  }
}

.c-sticky-btn-container {
  position: fixed;
  right: -1rem;
  bottom: -3rem;
  transition: all 600ms 0s ease;
  z-index: 999;
}

.c-sticky-btn-container .c-sticky-btn {
  display: block;
  height: 120px;
  z-index: 800;
  transition: all 600ms 0s ease;
  margin: 0 auto;
}

.c-sticky-btn-container .c-sticky-balloon {
  display: none;
  z-index: 800;
  margin: 0 auto -3rem;
}

.c-sticky-btn-container .c-sticky-btn-bg {
  position: absolute;
  display: block;
  height: 270px;
  width: 270px;
  animation: rotate-anime 12s linear infinite;
  z-index: 900;
  left: -49px;
  top: -44px;
}

.c-sticky-btn-container:hover {
  bottom: 0rem;
}

.c-sticky-btn-container:hover .c-sticky-balloon {
  display: block;
  width: 90px;
}

@keyframes rotate-anime {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media screen and (min-width: 844px) {
  .c-sticky-btn-container {
    position: fixed;
    right: inherit;
    left: -1rem;
    bottom: -8rem;
    transition: all 600ms 0s ease;
    z-index: 999;
  }
  .c-sticky-btn-container .c-sticky-btn {
    display: block;
    height: 220px;
    z-index: 800;
    transition: all 600ms 0s ease;
  }
  .c-sticky-btn-container .c-sticky-balloon {
    display: none;
    z-index: 800;
    margin: 0 auto -5rem;
  }
  .c-sticky-btn-container .c-sticky-btn-bg {
    position: absolute;
    display: block;
    height: 270px;
    width: 270px;
    animation: rotate-anime 12s linear infinite;
    z-index: 900;
    left: -49px;
    top: -44px;
  }
  .c-sticky-btn-container:hover {
    bottom: 0rem;
  }
  .c-sticky-btn-container:hover .c-sticky-balloon {
    display: block;
    width: 108px;
  }
  @keyframes rotate-anime {
    0% {
      transform: rotate(0);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  .c-header-sticky {
    display: flex;
    position: fixed;
    top: 0px;
    width: 100%;
    padding: 2rem 0 1.6rem;
    z-index: 200;
    background-color: #fff;
    transition: all 600ms 0s ease;
  }
  .c-header-sticky div {
    display: flex;
    margin: 0 auto;
    padding: 0;
  }
  .c-header-sticky div h1 img {
    width: 180px;
  }
  .c-header-sticky div .l-nav {
    padding: 0;
    list-style: none;
  }
  .c-header-sticky div .l-nav ul {
    writing-mode: inherit;
    -webkit-column-count: auto;
    -moz-column-count: auto;
    -ms-column-count: auto;
    column-count: auto;
    text-align: left;
    padding: 0;
    height: inherit;
  }
  .c-header-sticky div .l-nav ul li {
    display: inline-block;
    margin: 0 1.6rem 0 0;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: .5rem;
    height: inherit;
  }
  .c-header-sticky div .l-nav ul li:nth-child(1) {
    background-color: inherit;
  }
  .c-header-sticky div .l-nav ul li:nth-child(7) {
    text-align: center;
    background-color: #224695;
    vertical-align: center;
    padding: .4rem 1.2rem;
    margin: 0 0 0 0;
    border-radius: .4rem;
    height: inherit;
  }
  .c-header-sticky div .l-nav ul li:nth-child(7) a {
    color: #ff7a33;
  }
  .c-header-sticky div .l-nav ul li a {
    color: #224695;
    text-decoration: none !important;
    font-size: 1.6rem;
  }
  .c-header-sticky .c-header-sticky.hide {
    transform: translateY(-300%);
  }
}

.c-marquee-main {
  z-index: 100;
  display: flex;
  transform: rotate(-7deg);
  margin: 0 0;
}

.c-marquee-main div:first-child {
  animation: gallery-top 200s -100s linear infinite;
}

.c-marquee-main div:last-child {
  animation: gallery-top2 200s linear infinite;
}

.c-marquee-main div img {
  width: auto;
  height: 260px;
  margin: 0 0 0 -1px;
  display: block;
}

.c-marquee-main:nth-child(2) {
  margin-left: -576px;
  margin-top: 3rem;
}

.c-marquee-main:nth-child(2) div:first-child {
  animation: gallery-bottom 200s -100s linear infinite;
}

.c-marquee-main:nth-child(2) div:last-child {
  animation: gallery-bottom2 200s linear infinite;
}

@media screen and (min-width: 844px) {
  .c-marquee-main {
    margin: -8rem 0 0rem;
  }
  .c-marquee-main div:first-child {
    animation: gallery-top 200s -100s linear infinite;
  }
  .c-marquee-main div:last-child {
    animation: gallery-top2 200s linear infinite;
  }
  .c-marquee-main div img {
    width: auto;
    height: 614px;
    margin: 0 0 0 -1px;
    display: block;
  }
  .c-marquee-main:nth-child(2) {
    margin-left: -576px;
    margin-top: 1rem;
  }
  .c-marquee-main:nth-child(2) div:first-child {
    animation: gallery-bottom 200s -100s linear infinite;
  }
  .c-marquee-main:nth-child(2) div:last-child {
    animation: gallery-bottom2 200s linear infinite;
  }
  .c-marquee-a {
    overflow: hidden;
    position: fixed;
    z-index: 888;
    display: flex;
  }
  .c-marquee-a div:first-child {
    animation: gallery-top 50s -25s linear infinite;
  }
  .c-marquee-a div:last-child {
    animation: gallery-top2 50s linear infinite;
  }
  .c-marquee-a div img {
    width: auto;
    height: 36px;
    margin: 0 0 0 -1px;
    display: block;
  }
  @keyframes gallery-top {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  @keyframes gallery-top2 {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-200%);
    }
  }
  .c-marquee-b {
    overflow: hidden;
    position: fixed;
    z-index: 888;
    display: flex;
  }
  .c-marquee-b div:first-child {
    animation: gallery-bottom 50s -25s linear infinite;
  }
  .c-marquee-b div:last-child {
    animation: gallery-bottom2 50s linear infinite;
  }
  .c-marquee-b div img {
    width: auto;
    height: 36px;
    margin: 0 0 0 -1px;
    display: block;
  }
  @keyframes gallery-bottom {
    0% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(100%);
    }
  }
  @keyframes gallery-bottom2 {
    0% {
      transform: translateX(-200%);
    }
    100% {
      transform: translateX(0%);
    }
  }
  .c-marquee-c {
    overflow: hidden;
    position: fixed;
    z-index: 888;
  }
  .c-marquee-c div {
    display: block;
  }
  .c-marquee-c div:first-child {
    animation: gallery-left 40s -20s linear infinite;
  }
  .c-marquee-c div:last-child {
    animation: gallery-left2 40s linear infinite;
  }
  .c-marquee-c div img {
    width: 36px;
    height: auto;
    margin: 0 0 0 -1px;
    display: block;
  }
  @keyframes gallery-left {
    0% {
      transform: translateY(100%);
    }
    100% {
      transform: translateY(-100%);
    }
  }
  @keyframes gallery-left2 {
    0% {
      transform: translateY(0%);
    }
    100% {
      transform: translateY(-200%);
    }
  }
  .c-marquee-d {
    overflow: hidden;
    position: fixed;
    z-index: 888;
  }
  .c-marquee-d div {
    display: block;
  }
  .c-marquee-d div:first-child {
    animation: gallery-right 40s -20s linear infinite;
  }
  .c-marquee-d div:last-child {
    animation: gallery-right2 40s linear infinite;
  }
  .c-marquee-d div img {
    width: 36px;
    height: auto;
    margin: 0 0 0 -1px;
    display: block;
  }
  @keyframes gallery-right {
    0% {
      transform: translateY(-100%);
    }
    100% {
      transform: translateY(100%);
    }
  }
  @keyframes gallery-right2 {
    0% {
      transform: translateY(-200%);
    }
    100% {
      transform: translateY(0%);
    }
  }
  .c-marquee__left {
    top: 0;
    left: 0;
    border-right: 3px solid #224695;
  }
  .c-marquee__right {
    top: 0;
    right: 0;
    border-left: 3px solid #224695;
  }
  .c-marquee__top {
    top: 0;
    left: 0;
    border-bottom: 3px solid #224695;
  }
  .c-marquee__bottom {
    bottom: 0;
    left: 0;
    border-top: 3px solid #224695;
  }
  .c-marquee {
    display: none;
  }
}

@keyframes gallery-top {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes gallery-top2 {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-200%);
  }
}

@keyframes gallery-bottom {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes gallery-bottom2 {
  0% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(0%);
  }
}

.p-home-title-img {
  height: 19px;
  width: auto;
  margin: 0 auto 3.2rem;
}

.p-home-mainvisual {
  background-color: #FFF2DB;
  padding: 0 0;
  width: 100vw;
  overflow: hidden;
}

.p-home-mainvisual .mobile-img {
  width: 100%;
  margin: 0 auto;
  vertical-align: bottom;
}

.p-home-sidemenbtn {
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 1.8rem;
  background-color: #ff7a33;
  padding: 1rem 0;
  position: absolute;
  bottom: 0;
}

.p-home-sidemenbtn a {
  display: inline-block;
}

.p-home-about {
  text-align: center;
  padding: 0 2rem;
}

.p-home-about__inner {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 8rem 0;
}

.p-home-about__inner__wrap {
  display: block;
  padding: 0;
}

.p-home-about__inner__wrap header .headline {
  display: block;
  font-size: 3.2rem;
  text-align: left;
  display: inline-block;
  -webkit-text-orientation: upright;
  -moz-text-orientation: upright;
  -ms-text-orientation: upright;
  text-orientation: upright;
  -webkit-writing-mode: vertical-rl;
  -moz-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -ms-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  -webkit-column-count: auto;
  -moz-column-count: auto;
  -ms-column-count: auto;
  column-count: auto;
  text-align: left;
  letter-spacing: 1.6rem;
  line-height: 5.6rem;
  height: auto;
  margin: 0 auto;
}

.p-home-about__inner__wrap header .headline--mobile {
  display: none;
}

.p-home-about__inner__wrap div {
  text-align: center;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}

.p-home-about__inner__wrap div p {
  font-size: 1.6rem;
  letter-spacing: .4rem;
  line-height: 3rem;
  margin: 0 0 1rem;
}

.p-home-about__inner__wrap div img {
  max-width: 600px;
  width: 100%;
}

.p-home-feature__inner {
  max-width: 100%;
  height: auto;
  padding: 0 .4rem;
  display: block;
}

.p-home-feature__inner .p-home-feature-column {
  width: 100%;
  height: auto;
  order: 1;
}

.p-home-feature__inner .p-home-feature-column:nth-child(1) .p-home-feature-cell {
  padding: 8rem 0;
}

.p-home-feature__inner .p-home-feature-column:nth-child(2) {
  order: 2;
}

.p-home-feature__inner .p-home-feature-cell {
  background-color: #FFF2DB;
  height: auto;
  padding: 4rem 2rem;
  margin: .8rem .4rem;
}

.p-home-feature__inner .p-home-feature-cell img {
  margin: 0 0 2.4rem;
}

.p-home-feature__inner .p-home-feature-cell h3 {
  height: 56px;
  margin: 0 0 2.4rem;
}

.p-home-feature__inner .p-home-feature-cell .text {
  width: auto;
  margin: 0 auto;
  padding: 0 2rem;
  letter-spacing: .1rem;
}

.p-home-feature__inner .p-home-feature-cell-bg {
  padding: 0;
}

.p-home-feature__inner .p-home-feature-cell-bg img {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 480px;
}

.p-home-feature__inner header {
  margin: 0 auto;
}

.p-home-feature__inner header .headline {
  font-size: 3.2rem;
  text-align: center;
  letter-spacing: 1.2rem;
  line-height: 4.98rem;
  height: auto;
  display: block;
  height: auto;
  margin: 0 auto 2.4rem;
}

.p-home-feature img {
  vertical-align: bottom;
  margin: 0 auto;
  max-width: 130px;
  width: 100%;
}

.p-home-news {
  padding: 0 0;
  width: 100%;
}

.p-home-news__inner {
  max-width: 88vw;
  padding: 8rem 0 0;
  margin: auto;
  display: block;
}

.p-home-news__inner header {
  margin: 0 0 4rem;
}

.p-home-news__inner header span {
  font-weight: bold;
  color: #ff7a33;
  letter-spacing: 1rem;
  margin: 0 0 .6rem 0rem;
  display: block;
}

.p-home-news__inner header .headline {
  font-size: 3.2rem;
  text-align: center;
  letter-spacing: 1.2rem;
  line-height: 4.98rem;
  height: auto;
  display: block;
  margin: 0 auto 2.4rem;
}

.p-home-news__inner .p-home-news-post-container {
  display: flex;
  width: 100%;
  margin: 0 0 8rem;
  flex-direction: column;
}

.p-home-news__inner .p-home-news-post-container .banner {
  margin: 4rem auto 0;
  width: 100%;
}

.p-home-news__inner .c-grid {
  width: 100vw;
}

.p-home-news__inner .c-grid__3column {
  width: 100%;
  margin: 0 0 4rem 0;
  border-radius: 2rem;
  background-color: #fff;
  overflow: hidden;
}

.p-home-news__inner .c-grid__3column:nth-child(3) {
  margin: 0;
}

.p-home-news__inner .c-grid__3column span {
  font-size: 1.2rem;
  letter-spacing: .2rem;
  margin: 1rem 0 2rem;
  text-align: center;
  padding: 0 1.6rem;
  display: inline-block;
}

.p-home-news__inner .c-grid__3column .thumbnail-container {
  display: block;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.p-home-news__inner .c-grid__3column h3 {
  text-align: left;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: .3rem;
  padding: 0 2rem;
  margin: 0 auto 2rem;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.p-home-news__inner .c-grid__3column h3 a {
  color: #224695;
}

.p-home-news__inner .c-grid__3column .blog-category {
  background-color: #ff7a33;
  color: #224695;
  font-weight: bold;
  border-radius: 10rem;
  padding: .1rem 1.2rem;
  margin: 0 0 2.4rem;
}

@media screen and (min-width: 844px) {
  .p-home-mainvisual {
    padding: 0;
    align-items: center;
    height: 90vh;
    overflow: hidden;
    /*background: url("../img/top/main-visual-new.jpg");
    background-size: cover;
    background-position: center;
    */
  }
  .p-home-mainvisual__inner div:nth-child(2) {
    margin-left: -610px;
  }
  .p-home-mainvisual .pc-img {
    display: block;
    margin: 0 auto;
    height: 600px;
    /* マーキーさせない場合は高さを有効にする */
  }
  .p-home-mainvisual .mobile-img {
    display: none;
  }
  .p-home-sidemenbtn {
    color: #fff;
    font-weight: bold;
    text-align: center;
    font-size: 1.8rem;
    background-color: #ff7a33;
    padding: 1rem 0;
    position: absolute;
    bottom: 0;
  }
  .p-home-sidemenbtn a {
    display: inline-block;
  }
  .p-home-about {
    padding: 0;
  }
  .p-home-about__inner {
    max-width: 800px;
    padding: 20rem 0 16rem;
  }
  .p-home-about__inner__wrap {
    display: flex;
  }
  .p-home-about__inner__wrap header {
    order: 1;
  }
  .p-home-about__inner__wrap header .headline {
    font-size: 4.8rem;
    letter-spacing: 2rem;
    line-height: 8.2rem;
  }
  .p-home-about__inner__wrap div {
    text-align: left;
    display: inline-block;
    -webkit-text-orientation: upright;
    -moz-text-orientation: upright;
    -ms-text-orientation: upright;
    text-orientation: upright;
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -ms-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    -webkit-column-count: auto;
    -moz-column-count: auto;
    -ms-column-count: auto;
    column-count: auto;
    height: 430px;
    text-align: left;
    margin: 0 7.2rem 0 0;
  }
  .p-home-about__inner__wrap div p {
    font-size: 2rem;
    letter-spacing: .81rem;
    line-height: 4.6rem;
    margin: 0 0 6rem 3rem;
  }
  .p-home-about__inner__wrap div p:nth-child(2) {
    margin: 0 0 6rem 6rem;
  }
  .p-home-feature__inner {
    max-width: 100%;
    height: auto;
    padding: 0 .4rem;
    display: flex;
  }
  .p-home-feature__inner .p-home-feature-column {
    width: calc(100% / 3);
    height: 968px;
    order: 1;
  }
  .p-home-feature__inner .p-home-feature-column:nth-child(1) {
    order: 3;
  }
  .p-home-feature__inner .p-home-feature-column:nth-child(1) .p-home-feature-cell {
    height: 100%;
    padding: 20rem 0;
  }
  .p-home-feature__inner .p-home-feature-column:nth-child(2) {
    order: 2;
  }
  .p-home-feature__inner .p-home-feature-cell {
    background-color: #FFF2DB;
    height: 480px;
    padding: 6rem 0;
    margin: .8rem .4rem;
  }
  .p-home-feature__inner .p-home-feature-cell img {
    margin: 0 0 4rem;
  }
  .p-home-feature__inner .p-home-feature-cell h3 {
    margin: 0 0 1.6rem;
    height: 72px;
  }
  .p-home-feature__inner .p-home-feature-cell .text {
    width: auto;
    margin: 0 auto;
    padding: 0 2rem;
  }
  .p-home-feature__inner .p-home-feature-cell-bg {
    padding: 0;
  }
  .p-home-feature__inner .p-home-feature-cell-bg img {
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 480px;
  }
  .p-home-feature__inner header {
    margin: 0 auto;
  }
  .p-home-feature__inner header .headline {
    font-size: 4.8rem;
    text-align: left;
    display: inline-block;
    -webkit-text-orientation: upright;
    -moz-text-orientation: upright;
    -ms-text-orientation: upright;
    text-orientation: upright;
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -ms-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    -webkit-column-count: auto;
    -moz-column-count: auto;
    -ms-column-count: auto;
    column-count: auto;
    display: block;
    text-align: left;
    margin: 0 auto 4.8rem;
    letter-spacing: 1.6rem;
    line-height: 8.2rem;
    height: auto;
  }
  .p-home-feature img {
    vertical-align: bottom;
    margin: 0 auto;
    max-width: 140px;
    width: 100%;
  }
  .p-home-news {
    padding: 8rem 4rem;
  }
  .p-home-news__inner {
    max-width: 82vw;
    padding: 16rem 0 8rem;
    display: flex;
  }
  .p-home-news__inner header {
    margin: 0 10rem 0 0;
    width: 33.333%;
  }
  .p-home-news__inner header .p-home-title-img {
    display: block;
  }
  .p-home-news__inner header .headline {
    text-align: left;
    display: inline-block;
    -webkit-text-orientation: upright;
    -moz-text-orientation: upright;
    -ms-text-orientation: upright;
    text-orientation: upright;
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -ms-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    -webkit-column-count: auto;
    -moz-column-count: auto;
    -ms-column-count: auto;
    column-count: auto;
    font-size: 4.8rem;
    display: block;
    text-align: center;
    margin: 0 auto 4.8rem;
    letter-spacing: 1.6rem;
    line-height: 5.6rem;
  }
  .p-home-news__inner header span {
    font-size: 1.4rem;
    font-weight: bold;
    color: #ff7a33;
    letter-spacing: 1rem;
    margin: 0 0 2.4rem .6rem;
    display: block;
  }
  .p-home-news__inner header .l-section__headline {
    margin: 0 auto 6rem;
  }
  .p-home-news__inner .p-home-news-post-container {
    display: flex;
    width: 80%;
    margin: 0 0 8rem;
    flex-direction: column;
  }
  .p-home-news__inner .p-home-news-post-container .banner {
    margin: 0 auto;
    width: 70%;
  }
  .p-home-news__inner .p-home-news-post {
    display: flex;
    width: 100%;
    margin: 0 0 6rem;
  }
  .p-home-news__inner .c-grid {
    width: 100vw;
  }
  .p-home-news__inner .c-grid__3column {
    width: 30.3%;
    margin: 0 4rem 0 0;
    border-radius: 2rem;
    background-color: #fff;
    overflow: hidden;
  }
  .p-home-news__inner .c-grid__3column:nth-child(3) {
    margin-right: 0;
  }
  .p-home-news__inner .c-grid__3column span {
    font-size: 1.4rem;
    letter-spacing: .3rem;
    margin: 0;
    text-align: center;
    display: inline-block;
  }
  .p-home-news__inner .c-grid__3column img {
    height: auto;
    object-fit: cover;
  }
  .p-home-news__inner .c-grid__3column .thumbnail-container {
    display: block;
    height: 190px;
    overflow: hidden;
    margin: 0 0 1rem;
  }
  .p-home-news__inner .c-grid__3column h3 {
    font-size: 1.8rem;
    letter-spacing: .32rem;
    line-height: 3.2rem;
    line-height: 2.8rem;
    text-align: left;
    font-weight: bold;
    padding: 0 2rem;
    margin: 0 auto 2rem;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .p-home-news__inner .c-grid__3column h3 a {
    color: #224695;
  }
  .p-home-news__inner .c-grid__3column .blog-category {
    font-weight: bold;
    letter-spacing: .2rem;
    padding: .24rem 1.6rem;
    margin: 0 0 4rem;
  }
}

.p-page-blog {
  width: 100vw;
  margin-left: 0;
}

.p-page-blog main {
  width: 100%;
  margin: 0 auto;
}

.p-page-blog__inner {
  padding: 0 2rem 12rem;
  height: auto;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: space-between;
}

.p-page-blog__inner p {
  text-align: left;
  font-size: 1.6rem;
  letter-spacing: .2rem;
  line-height: 2.2rem;
  margin: 0 0 4rem;
}

.p-page-blog .p-page-title {
  position: relative;
  top: 0;
  height: auto;
  margin: 0 0 4.8rem;
}

.p-page-blog .p-page-title__inner img {
  display: none;
  width: 24px;
  z-index: -1;
}

.p-page-blog .p-blog-post {
  margin: 0 0;
  padding: 0;
  width: 100%;
}

.p-page-blog .p-blog-post__content {
  margin: 0 0 6rem 0;
  display: flex;
  align-items: center;
}

.p-page-blog .p-blog-post__content__img {
  overflow: hidden;
  width: 300px;
  height: 200px;
  margin: 0 3rem 0 0;
  border-radius: .8rem;
}

.p-page-blog .p-blog-post__content__img a {
  display: block;
  position: relative;
}

.p-page-blog .p-blog-post__content__img a img {
  width: 300px;
  max-width: 300px;
  height: 100%;
  position: relative;
}

.p-page-blog .p-blog-post__content__meta {
  width: 330px;
}

.p-page-blog .p-blog-post__content__meta__container {
  margin: 0 0 1.6rem 0;
  align-items: center;
  display: flex;
  letter-spacing: .2rem;
}

.p-page-blog .p-blog-post__content__meta__container__date {
  margin: 0 1.6rem 0 0;
}

.p-page-blog .p-blog-post__content__meta__container__category {
  font-size: 1.2rem;
  padding: 0rem 1.2rem;
  font-weight: bold;
  letter-spacing: .2rem;
  background-color: #ff7a33;
  color: #224695;
  font-weight: bold;
  border-radius: 10rem;
}

.p-page-blog .p-blog-post__content__meta__container__category a {
  color: #224695;
}

.p-page-blog .p-blog-post__content__meta__container__category a:hover {
  color: #224695;
}

.p-page-blog .p-blog-post__content__meta h2 {
  color: #224695;
  text-align: left;
  letter-spacing: .4rem;
  width: 100%;
  font-size: 2rem;
  line-height: 2.8rem;
  font-weight: bold;
  margin: 0 0 0 0;
}

.p-page-blog .p-blog-post__content__meta h2 a {
  color: #224695;
}

.p-page-blog .p-blog-post__content__meta h2 a:hover {
  color: #224695;
}

.p-page-blog .p-blog-post .banner {
  width: 100%;
}

.p-page-blog .p-blog-sidemanu {
  width: 300px;
  color: #ff7a33;
}

.p-blog-single__content {
  width: 100%;
}

.p-blog-single__content h2 {
  text-align: left;
  letter-spacing: .4rem;
  width: 100%;
  font-size: 2.8rem;
  line-height: 3.8rem;
  font-weight: bold;
  margin: 0 0 4rem 0;
}

.p-blog-single__article {
  text-align: left;
  font-size: 1.8rem;
  letter-spacing: .4rem;
}

.p-home-sidemenbtn {
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 1.8rem;
  background-color: #ff7a33;
  padding: 1rem 0;
  position: absolute;
  bottom: 0;
}

.p-home-sidemenbtn a {
  display: inline-block;
}

.sticky-btn {
  position: fixed;
  display: block;
  right: -24rem;
  top: 20rem;
  transition: all 600ms 0s ease;
  z-index: 100;
}

.wp-block-image img {
  max-width: 100% !important;
  height: auto !important;
}

@media screen and (min-width: 844px) {
  .p-page-blog {
    width: 78vw;
    margin-left: 0;
  }
  .p-page-blog main {
    width: 100%;
    padding: 0 6rem;
    margin: 0 auto;
  }
  .p-page-blog__inner {
    padding: 0 0 12rem;
    height: auto;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: space-between;
  }
  .p-page-blog__inner p {
    text-align: left;
    font-size: 1.6rem;
    letter-spacing: .24rem;
    line-height: 2;
    margin: 0 0 4rem;
  }
  .p-page-blog .p-page-title {
    position: sticky;
    top: 180px;
    left: 180px;
    height: 500px;
    display: block;
  }
  .p-page-blog .p-page-title__inner {
    position: relative;
  }
  .p-page-blog .p-page-title__inner img {
    display: block;
    width: 48px;
    z-index: -1;
  }
  .p-page-blog .p-blog-post {
    width: 70%;
    margin: 0 0;
    padding: 0;
    text-align: left;
  }
  .p-page-blog .p-blog-post__content {
    margin: 0 0 6rem 0;
    display: flex;
    align-items: center;
  }
  .p-page-blog .p-blog-post__content__img {
    overflow: hidden;
    width: 300px;
    height: 200px;
    margin: 0 3rem 0 0;
    border-radius: .8rem;
  }
  .p-page-blog .p-blog-post__content__img a {
    display: block;
    position: relative;
  }
  .p-page-blog .p-blog-post__content__img a img {
    width: 300px;
    max-width: 300px;
    height: 100%;
    position: relative;
  }
  .p-page-blog .p-blog-post__content__meta {
    width: auto;
  }
  .p-page-blog .p-blog-post__content__meta__container {
    margin: 0 0 1.6rem 0;
    align-items: center;
    display: flex;
    letter-spacing: .2rem;
  }
  .p-page-blog .p-blog-post__content__meta__container__date {
    margin: 0 1.6rem 0 0;
  }
  .p-page-blog .p-blog-post__content__meta__container__category {
    font-size: 1.2rem;
    padding: 0rem 1.2rem;
    font-weight: bold;
    letter-spacing: .2rem;
    background-color: #ff7a33;
    color: #224695;
    font-weight: bold;
    border-radius: 10rem;
  }
  .p-page-blog .p-blog-post__content__meta__container__category a {
    color: #224695;
  }
  .p-page-blog .p-blog-post__content__meta__container__category a:hover {
    color: #224695;
  }
  .p-page-blog .p-blog-post__content__meta h2 {
    color: #224695;
    text-align: left;
    letter-spacing: .24rem;
    width: 100%;
    font-size: 2rem;
    line-height: 2.8rem;
    font-weight: bold;
    margin: 0 0 0 0;
  }
  .p-page-blog .p-blog-post__content__meta h2 a {
    color: #224695;
  }
  .p-page-blog .p-blog-post__content__meta h2 a:hover {
    color: #224695;
  }
  .p-page-blog .p-blog-post .banner {
    margin-top: 2rem;
    width: 70%;
  }
  .p-page-blog .p-blog-sidemanu {
    width: 300px;
    color: #ff7a33;
  }
  .p-blog-single__content {
    width: 660px;
  }
  .p-blog-single__content h2 {
    text-align: left;
    letter-spacing: .4rem;
    width: 100%;
    font-size: 2.8rem;
    line-height: 3.8rem;
    font-weight: bold;
    margin: 0 0 6rem 0;
  }
  .p-blog-single__article {
    text-align: left;
    font-size: 1.8rem;
    letter-spacing: .4rem;
  }
  .p-home-sidemenbtn {
    color: #fff;
    font-weight: bold;
    text-align: center;
    font-size: 1.8rem;
    background-color: #ff7a33;
    padding: 1rem 0;
    position: absolute;
    bottom: 0;
  }
  .p-home-sidemenbtn a {
    display: inline-block;
  }
}

.p-page-list {
  width: 100vw;
  margin-left: 0;
}

.p-page-list main {
  width: 100%;
  margin: 0 auto;
}

.p-page-list__inner {
  padding: 0 2rem 12rem;
  height: auto;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: space-between;
}

.p-page-list__inner p {
  text-align: left;
  font-size: 1.6rem;
  letter-spacing: .2rem;
  line-height: 2.2rem;
  margin: 0 0 4rem;
}

.p-page-list .p-page-title {
  position: relative;
  top: 0;
  height: auto;
  margin: 0 0 4.8rem;
}

.p-page-list .p-page-title__inner img {
  display: none;
  width: 24px;
  z-index: -1;
}

.p-page-list .p-list-post {
  margin: 0 0;
  padding: 0;
  width: 100%;
}

.p-page-list .p-list-post__content {
  margin: 0 0 6rem 0;
  display: flex;
  align-items: center;
}

.p-page-list .p-list-post__content__img {
  overflow: hidden;
  width: 300px;
  height: 200px;
  margin: 0 3rem 0 0;
  border-radius: .8rem;
}

.p-page-list .p-list-post__content__img a {
  display: block;
  position: relative;
}

.p-page-list .p-list-post__content__img a img {
  width: 300px;
  max-width: 300px;
  height: 100%;
  position: relative;
}

.p-page-list .p-list-post__content__meta {
  width: 330px;
}

.p-page-list .p-list-post__content__meta__container {
  margin: 0 0 1.6rem 0;
  align-items: center;
  display: flex;
  letter-spacing: .2rem;
}

.p-page-list .p-list-post__content__meta__container__date {
  margin: 0 1.6rem 0 0;
}

.p-page-list .p-list-post__content__meta__container__category {
  font-size: 1.2rem;
  padding: 0rem 1.2rem;
  font-weight: bold;
  letter-spacing: .2rem;
  background-color: #ff7a33;
  color: #224695;
  font-weight: bold;
  border-radius: 10rem;
}

.p-page-list .p-list-post__content__meta__container__category a {
  color: #224695;
}

.p-page-list .p-list-post__content__meta__container__category a:hover {
  color: #224695;
}

.p-page-list .p-list-post__content__meta h2 {
  color: #224695;
  text-align: left;
  letter-spacing: .4rem;
  width: 100%;
  font-size: 2rem;
  line-height: 2.8rem;
  font-weight: bold;
  margin: 0 0 0 0;
}

.p-page-list .p-list-post__content__meta h2 a {
  color: #224695;
}

.p-page-list .p-list-post__content__meta h2 a:hover {
  color: #224695;
}

.p-page-list .p-list-post .banner {
  width: 100%;
}

.p-page-list .p-list-sidemanu {
  width: 300px;
  color: #ff7a33;
}

.p-list-single__content {
  width: 100%;
}

.p-list-single__content h2 {
  text-align: left;
  letter-spacing: .4rem;
  width: 100%;
  font-size: 2.8rem;
  line-height: 3.8rem;
  font-weight: bold;
  margin: 0 0 4rem 0;
}

.p-list-single__article {
  text-align: left;
  font-size: 1.8rem;
  letter-spacing: .4rem;
}

.p-home-sidemenbtn {
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 1.8rem;
  background-color: #ff7a33;
  padding: 1rem 0;
  position: absolute;
  bottom: 0;
}

.p-home-sidemenbtn a {
  display: inline-block;
}

.sticky-btn {
  position: fixed;
  display: block;
  right: -24rem;
  top: 20rem;
  transition: all 600ms 0s ease;
  z-index: 100;
}

.wp-block-image img {
  max-width: 100% !important;
  height: auto !important;
}

@media screen and (min-width: 844px) {
  .p-page-list {
    width: 78vw;
    margin-left: 0;
  }
  .p-page-list main {
    width: 100%;
    padding: 0 6rem;
    margin: 0 auto;
  }
  .p-page-list__inner {
    padding: 0 0 12rem;
    height: auto;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: space-between;
  }
  .p-page-list__inner p {
    text-align: left;
    font-size: 1.6rem;
    letter-spacing: .24rem;
    line-height: 2;
    margin: 0 0 2.4rem;
  }
  .p-page-list .p-page-title {
    position: sticky;
    top: 180px;
    left: 180px;
    height: 500px;
    display: block;
  }
  .p-page-list .p-page-title__inner {
    position: relative;
  }
  .p-page-list .p-page-title__inner img {
    display: block;
    width: 48px;
    z-index: -1;
  }
  .p-page-list .p-list-post {
    width: 70%;
    margin: 0 0;
    padding: 0;
    text-align: left;
  }
  .p-page-list .p-list-post__content {
    margin: 0 0 6rem 0;
    display: flex;
    align-items: flex-start;
  }
  .p-page-list .p-list-post__content__img {
    flex: 3;
    overflow: hidden;
    max-width: 240px;
    width: 100%;
    height: 240px;
    margin: 0 3rem 0 0;
    border-radius: .8rem;
  }
  .p-page-list .p-list-post__content__img a {
    display: block;
    position: relative;
  }
  .p-page-list .p-list-post__content__img img {
    height: 240px;
    border-radius: .8rem;
    position: relative;
  }
  .p-page-list .p-list-post__content__meta {
    flex: 4;
    width: auto;
  }
  .p-page-list .p-list-post__content__meta__container {
    margin: 0 0 0;
    align-items: center;
    display: flex;
    letter-spacing: .2rem;
  }
  .p-page-list .p-list-post__content__meta__container__date {
    margin: 0 1.6rem 0 0;
  }
  .p-page-list .p-list-post__content__meta__container__category {
    font-size: 1.2rem;
    padding: 0rem 1.2rem;
    font-weight: bold;
    letter-spacing: .2rem;
    background-color: #ff7a33;
    color: #224695;
    font-weight: bold;
    border-radius: 10rem;
  }
  .p-page-list .p-list-post__content__meta__container__category a {
    color: #224695;
  }
  .p-page-list .p-list-post__content__meta__container__category a:hover {
    color: #224695;
  }
  .p-page-list .p-list-post__content__meta ul {
    font-size: 1.4rem;
  }
  .p-page-list .p-list-post__content__meta ul li {
    display: inline-block;
    margin: 0 .8rem 0 0;
  }
  .p-page-list .p-list-post__content__meta ul li img {
    width: 48px;
    height: 48px;
  }
  .p-page-list .p-list-post__content__meta h2 {
    color: #224695;
    text-align: left;
    letter-spacing: .24rem;
    width: 100%;
    font-size: 2.4rem;
    line-height: 2.8rem;
    font-weight: bold;
    margin: 0 0 1.6rem 0;
  }
  .p-page-list .p-list-post__content__meta h2 span {
    font-size: 1.8rem;
  }
  .p-page-list .p-list-post__content__meta h2 a {
    color: #224695;
  }
  .p-page-list .p-list-post__content__meta h2 a:hover {
    color: #224695;
  }
  .p-page-list .p-list-post .banner {
    margin-top: 2rem;
    width: 70%;
  }
  .p-page-list .p-list-sidemanu {
    width: 300px;
    color: #ff7a33;
  }
  .p-list-single__content {
    width: 660px;
  }
  .p-list-single__content h2 {
    text-align: left;
    letter-spacing: .4rem;
    width: 100%;
    font-size: 2.8rem;
    line-height: 3.8rem;
    font-weight: bold;
    margin: 0 0 6rem 0;
  }
  .p-list-single__article {
    text-align: left;
    font-size: 1.8rem;
    letter-spacing: .4rem;
  }
  .p-home-sidemenbtn {
    color: #fff;
    font-weight: bold;
    text-align: center;
    font-size: 1.8rem;
    background-color: #ff7a33;
    padding: 1rem 0;
    position: absolute;
    bottom: 0;
  }
  .p-home-sidemenbtn a {
    display: inline-block;
  }
}

.p-page-about {
  width: 100vw;
  margin-left: 0;
}

.p-page-about main {
  width: 100%;
}

.p-page-about__inner {
  padding: 0 0;
  margin: 0;
  width: 100%;
  position: relative;
  display: block;
}

.p-page-about__inner .p-page-title {
  display: none;
}

.p-page-about__inner .p-page-content {
  text-align: left;
}

.p-page-about__inner .p-page-content section {
  margin: 0 0 10rem 0;
  padding: 0 2rem;
}

.p-page-about__inner .p-page-content section h2 {
  font-size: 2.4rem;
  margin: 0 0 4rem;
  letter-spacing: .6rem;
  text-align: center;
}

.p-page-about__inner .p-page-content section p {
  font-size: 1.6rem;
  letter-spacing: .24rem;
  line-height: 2.4rem;
  letter-spacing: .2rem;
  line-height: 3rem;
  margin: 0 0 4rem;
}

.p-page-about__inner .p-page-content section img {
  width: 100%;
  height: auto;
}

.p-page-about__inner .p-page-content dl {
  margin: 0 0 2rem;
  border-radius: 1rem;
  padding: 3rem 2rem;
  background-color: #fff;
}

.p-page-about__inner .p-page-content dl dt {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: .8rem;
  margin: 0 0 2.4rem;
}

.p-page-about__inner .p-page-content dl dd {
  font-size: 1.5rem;
  line-height: 2.4rem;
  letter-spacing: .3rem;
}

.p-page-about__inner .overview-intro {
  display: block;
}

.p-page-overview main {
  width: 100%;
  margin: 0 auto;
}

.p-page-overview .p-page-title {
  position: relative;
  top: 0;
  height: auto;
  margin: 0 0 4.8rem;
}

.p-page-overview .p-page-title__inner img {
  display: none;
  width: 24px;
  z-index: -1;
}

.p-page-overview .overview-intro {
  margin: 0;
  padding: 0 2rem;
}

.p-page-overview .overview-intro h2 {
  font-size: 2.4rem;
  margin: 0 0 4rem;
  letter-spacing: .24rem;
  text-align: center;
}

.p-page-overview .overview-intro h2 span {
  letter-spacing: -16px;
}

.p-page-overview .overview-intro p {
  font-size: 1.6rem;
  letter-spacing: .24rem;
  line-height: 2.4rem;
  letter-spacing: .12rem;
  line-height: 3rem;
  margin: 0 0 6rem;
}

.p-page-overview .overview-detail {
  margin: 0 0 8rem;
}

.p-page-overview .overview-detail__inner {
  display: block;
  padding: 0 2rem;
}

.p-page-overview .overview-detail__inner__item {
  width: 100%;
  color: #1f1e18;
  background-color: #fff;
  border-radius: 1rem;
  text-align: center;
  margin: 0 1.6rem 1.6rem 0;
  padding: 3rem 2rem;
}

.p-page-overview .overview-detail__inner__item img {
  height: 180px;
  margin: 0 0 2rem;
}

.p-page-overview .overview-detail__inner__item h3 {
  color: #1f1e18;
  font-size: 2.4rem;
  font-weight: bold;
  margin: 0 0 4rem;
}

.p-page-overview .overview-detail__inner__item h3 span {
  font-size: 1.4rem;
}

.p-page-overview .overview-detail__inner__item p {
  font-size: 1.6rem;
  font-weight: normal;
  margin-bottom: 4rem;
  line-height: 1.6;
}

.p-page-overview .overview-detail__inner__item:nth-child(even) {
  margin-right: 0;
}

.p-page-overview .overview-detail__inner__item dl {
  display: flex;
  display: block;
  margin: 0;
  padding: 0;
  text-align: left;
}

.p-page-overview .overview-detail__inner__item dt {
  font-size: 1.8rem;
  font-weight: bold;
  font-weight: 600;
  text-align: center;
  letter-spacing: .1rem;
  width: 25%;
  width: 100%;
  margin: 0 0 2rem;
}

.p-page-overview .overview-detail__inner__item dd {
  text-align: left;
  line-height: 1.8;
  width: 65%;
  width: 100%;
}

.p-page-overview .overview-detail__inner__item dd h4 {
  font-size: 1.6rem;
  line-height: 1;
  margin: 0 0 1.6rem;
}

.p-page-overview .overview-detail__inner__item dd h4 span {
  font-size: 1.2rem;
}

.p-page-overview .overview-detail__inner__item dd span {
  font-size: 1.4rem;
}

.p-page-overview .overview-detail__inner__item dd img {
  width: 100%;
  height: auto;
}

.p-page-overview .overview-detail-flow {
  padding: 0 2rem;
  margin: 0 0 10rem;
}

.p-page-overview .overview-detail-flow h2 {
  font-size: 2.4rem;
  margin: 0 0 4rem;
  letter-spacing: .6rem;
  text-align: center;
}

.p-page-overview .overview-detail-flow .flow-item {
  display: flex;
  border-radius: 1rem;
  padding: 0 0 0;
  margin: 0 0 1.6rem;
  position: relative;
}

.p-page-overview .overview-detail-flow .flow-item div:first-child {
  font-weight: bold;
  font-size: 1.4rem;
  text-align: left;
  min-width: 60px;
  margin: 0 2rem 0 0;
}

.p-page-overview .overview-detail-flow .flow-item div:first-child img {
  max-width: 78px;
  width: 100%;
  height: auto;
}

.p-page-overview .overview-detail-flow .flow-item div:first-child span {
  font-size: 6rem;
  line-height: 60px;
}

.p-page-overview .overview-detail-flow .flow-item div:last-child {
  font-size: 1.4rem;
  padding: .8rem 0 0;
  text-align: left;
}

.p-page-overview .overview-detail-flow .flow-item div:last-child h3 {
  font-weight: bold;
  font-size: 1.7rem;
  margin: 0 0 1rem;
  letter-spacing: .3rem;
}

.p-page-overview .overview-detail-flow .flow-item div:last-child p {
  margin: 0 0 0;
  padding: 0;
  line-height: 1.4;
}

.p-page-overview__flow__inner {
  padding: 2rem 0 4rem;
  height: auto;
  max-width: 960px;
  margin: 0 auto;
}

.p-page-overview__flow__inner h2 {
  font-size: 3.2rem;
  letter-spacing: .48rem;
  margin: 0 0 4rem;
  text-align: center;
}

.p-page-overview__flow__inner h2 span {
  font-size: 1.4rem;
  font-weight: bold;
  color: #ff7a33;
  letter-spacing: 1rem;
  margin: 0 0 2.4rem 8rem;
  display: inline-block;
}

.p-page-overview__flow__inner .c-grid {
  justify-content: space-between;
}

.p-page-overview__flow__inner .c-grid__3column {
  background-color: #F2F2F2;
  padding: 3rem 2rem;
  margin: 0 6rem 6rem 0;
  border-radius: .8rem;
  width: 100%;
  height: 200px;
  position: relative;
}

.p-page-overview__flow__inner .c-grid__3column:before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 24px;
  background-image: url(../img/flow-arrow.svg);
  background-size: contain;
  vertical-align: middle;
  margin: 0 auto;
  position: absolute;
  right: 0;
  left: 0;
  bottom: -40px;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.p-page-overview__flow__inner .c-grid__3column header {
  text-align: center;
  font-size: 1.8rem;
  letter-spacing: .32rem;
  margin: 0 0 2rem;
}

.p-page-overview__flow__inner .c-grid__3column p {
  letter-spacing: .2rem;
  text-align: left;
}

.p-page-overview__flow__inner .c-grid__3column:nth-child(3) {
  margin: 0 0 6rem;
}

.p-page-overview__flow__inner .c-grid__3column:nth-child(3):before {
  vertical-align: middle;
  margin: 0 auto;
  position: absolute;
  text-align: center;
  right: 0;
  left: 0;
  bottom: -40px;
  top: inherit;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.p-page-overview__flow__inner .c-grid:nth-child(3) .c-grid__3column:before {
  vertical-align: middle;
  margin: 0 auto;
  position: absolute;
  text-align: center;
  right: 0px;
  left: 0;
  bottom: -40px;
  top: inherit;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.p-page-overview__flow__inner .c-grid:nth-child(3) .c-grid__3column:nth-child(3) {
  margin: 0 0 5rem;
}

.p-page-overview__flow__inner .c-grid:nth-child(3) .c-grid__3column:nth-child(3):before {
  display: none;
}

.p-page-faq main {
  width: auto;
  margin: 0 auto;
}

.p-page-faq__inner {
  padding: 0 2rem 4rem;
  height: auto;
  max-width: 960px;
  margin: 0 auto;
}

.p-page-faq__inner .p-page-title {
  position: sticky;
  top: 180px;
  height: 500px;
  display: none;
}

.p-page-faq__inner .p-page-title h2 {
  font-size: 4.8rem;
  text-align: left;
  letter-spacing: 1.2rem;
  line-height: 6rem;
  height: auto;
  text-align: left;
  display: inline-block;
  -webkit-text-orientation: upright;
  -moz-text-orientation: upright;
  -ms-text-orientation: upright;
  text-orientation: upright;
  -webkit-writing-mode: vertical-rl;
  -moz-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -ms-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  -webkit-column-count: auto;
  -moz-column-count: auto;
  -ms-column-count: auto;
  column-count: auto;
}

.p-page-faq__inner .p-page-content h3 {
  font-size: 2.4rem;
  letter-spacing: .4rem;
  margin: 0 0 4rem 0;
}

.p-page-faq__inner .faq-content {
  text-align: left;
  margin: 0 0 3rem -1rem;
  padding: 0 0 0;
}

.p-page-faq__inner .faq-content dt {
  font-size: 1.6rem;
  font-weight: bold;
  padding: 2rem 0 1rem 5rem;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

.p-page-faq__inner .faq-content dt:before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 32px;
  background-image: url(../img/faq-icon-q.svg);
  background-size: contain;
  vertical-align: top;
  margin: 0rem 0rem 0rem -4.2rem;
}

.p-page-faq__inner .faq-content dt h4 {
  line-height: 1.4;
  margin: -26px 0 0 0;
}

.p-page-faq__inner .faq-content dd {
  font-size: 1.5rem;
  padding: 0 0 1rem 5.1rem;
  cursor: pointer;
  display: none;
  line-height: 1.6;
}

.p-page-faq__inner .faq-content dd:before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 32px;
  background-image: url(../img/faq-icon-a.svg);
  background-size: contain;
  vertical-align: top;
  margin: -.5rem 0rem 0rem -4.2rem;
}

.p-page-faq__inner .faq-content-last {
  margin: 0 0 0rem 5rem;
  padding: 0 0 2rem;
}

.p-page-faq__inner hr {
  border-bottom: 1px solid #ECE8E8;
  margin: 0 0 5rem 0;
}

.p-page-faq__inner p {
  text-align: left;
  font-size: 2rem;
  letter-spacing: .6rem;
  line-height: 4rem;
  padding: 0 10rem 8rem;
}

.p-page-faq__inner .l-section__headline {
  margin: 0 0 0 8rem;
}

.p-page-faq__inner .c-grid .c-grid__3column {
  margin: 0 3rem 4rem;
}

.p-page-faq__inner .c-grid .c-grid__3column header {
  margin: 0 0 2.4rem;
  font-weight: bold;
  letter-spacing: .4rem;
}

.p-page-faq__inner .c-grid .c-grid__3column h3 {
  color: #ff7a33;
  font-size: 9rem;
  font-weight: bold;
  letter-spacing: .4rem;
  margin: 0 0 4rem;
}

.p-page-faq__inner .c-grid .c-grid__3column h3 span {
  font-size: 3.2rem;
}

.p-page-faq__inner .c-grid .c-grid__3column p {
  padding: 0;
  font-size: 1.6rem;
  letter-spacing: .6rem;
  line-height: 3.2rem;
}

.p-page-faq__inner .c-grid .c-grid__3column:nth-child(3) {
  margin: 0 0 4rem;
}

.p-page-contact {
  width: 100vw;
  margin-left: 0;
}

.p-page-contact main {
  width: 100%;
}

.p-page-contact__inner {
  padding: 0 2rem;
}

.p-page-contact__inner .p-page-title {
  display: none;
}

.p-page-contact .wpcf7 {
  margin: 0 0;
}

.p-page-contact .p-page-content {
  text-align: left;
}

.p-page-contact .p-page-content h2 {
  font-size: 2.4rem;
  margin: 0 0 4rem;
  letter-spacing: .6rem;
  text-align: center;
}

.p-page-contact .p-page-content p {
  font-size: 1.6rem;
  letter-spacing: .24rem;
  line-height: 2.4rem;
  letter-spacing: .2rem;
  line-height: 3rem;
  margin: 0 0 4rem;
}

.p-page-contact .p-page-content p.p-page-content__small-text {
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: .1rem;
}

.p-page-contact .wpcf7-form p {
  text-align: left;
  font-size: 1.6rem;
  letter-spacing: .6rem;
  line-height: 4rem;
  padding: 0;
  margin: 0 0 1.6rem;
}

.p-page-contact .wpcf7-form label {
  letter-spacing: .2rem;
  font-weight: bold;
}

.p-page-contact .wpcf7-form input {
  border: 1px solid #efefe0;
  border-radius: .8rem;
  box-shadow: none;
  padding: 1rem 0 1rem 1.6rem;
  width: 100%;
  background-color: #fff;
  font-weight: normal;
}

.p-page-contact .wpcf7-form select {
  border: 1px solid #efefe0;
  border-radius: .8rem;
  box-shadow: none;
  padding: 1rem 0 1rem 1.6rem;
  width: 50%;
  background-color: #fff;
  font-weight: normal;
}

.p-page-contact .wpcf7-form textarea {
  border: 1px solid #efefe0;
  border-radius: .8rem;
  box-shadow: none;
  padding: 1rem 0 1rem 1.6rem;
  width: 100%;
  background-color: #fff;
  font-weight: normal;
  height: 300px;
}

.p-page-contact .wpcf7-form .wpcf7-submit {
  color: #224695;
  border: none;
  background-color: #ff7a33;
  text-align: center;
  display: inline-block;
  font-size: 2rem;
  font-weight: bold;
  border-radius: 1rem;
  text-decoration: none;
  padding: 1.2rem 10rem;
  letter-spacing: .64rem;
  margin: 2rem 0 0 0;
}

.p-page-apply main {
  width: 100%;
  margin: 0 auto;
}

.p-page-apply .p-page-title {
  position: relative;
  top: 0;
  height: auto;
  margin: 0 0 4.8rem;
}

.p-page-apply .p-page-title__inner img {
  display: none;
  width: 24px;
  z-index: -1;
}

.p-page-apply .apply-intro {
  margin: 0;
  padding: 0 2rem;
}

.p-page-apply .apply-intro h2 {
  font-size: 2.4rem;
  margin: 0 0 4rem;
  letter-spacing: .6rem;
  text-align: center;
}

.p-page-apply .apply-intro h2 span {
  letter-spacing: -16px;
}

.p-page-apply .apply-intro p {
  font-size: 1.6rem;
  letter-spacing: .24rem;
  line-height: 2.4rem;
  letter-spacing: .2rem;
  line-height: 3rem;
  margin: 0 0 6rem;
}

.p-page-apply .apply-detail {
  padding: 0 2rem 4rem;
  margin: 0 0 8rem;
  border-bottom: 1px solid #ECE8E8;
}

.p-page-apply .apply-detail__inner {
  display: block;
  padding: 0 2rem;
}

.p-page-apply .apply-detail__inner__item {
  width: 100%;
  color: #1f1e18;
  background-color: #fff;
  border-radius: 1rem;
  text-align: center;
  margin: 0 0 2.4rem;
  padding: 2.4rem 0;
}

.p-page-apply .apply-detail__inner__item img {
  max-width: 100%;
  width: 300px;
  height: auto;
  margin: 0 0 2rem;
}

.p-page-apply .apply-detail__inner__item h3 {
  color: #1f1e18;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 0 2rem;
  padding: 0 1.6rem;
  letter-spacing: 0.2rem;
}

.p-page-apply .apply-detail__inner__item p {
  font-size: 3.2rem;
  text-align: center  !important;
  font-weight: bold;
  margin-bottom: 2.4rem;
  padding: 0 1.6rem;
  line-height: 1.2;
}

.p-page-apply .apply-detail__inner__item p span {
  font-size: 1.4rem;
  font-weight: normal;
  letter-spacing: 0rem;
}

.p-page-apply .apply-detail__inner__item p span:first-child {
  font-weight: bold;
  font-size: 1.8rem;
  margin: 0 .8rem 0 0;
}

.p-page-apply .apply-detail__inner__item:nth-child(even) {
  margin-right: 0;
}

.p-page-apply .apply-detail__inner__item .stores-btn {
  padding: 0 1.6rem;
}

.p-page-apply .apply-detail__inner__item .stores-btn img {
  backface-visibility: hidden !important;
}

.p-page-apply .apply-detail__inner__description {
  background-color: #fff;
  border-radius: 1rem;
  padding: 1.6rem;
  margin: 0 1.6rem;
  text-align: left;
}

.p-page-apply .apply-detail__inner__description li {
  padding: 0 0 0 2rem;
  margin: 2rem 0;
  line-height: 1.5;
  position: relative;
  text-align: justify;
  letter-spacing: 0.2rem;
}

.p-page-apply .apply-detail__inner__description li:before {
  content: "※";
  display: block;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0px;
}

.p-page-apply .apply-detail-note {
  padding: 0 2rem;
  margin: 0 0 6rem;
}

.p-page-apply .apply-detail-note h2 {
  font-size: 2.4rem;
  margin: 0 0 4rem;
  letter-spacing: .6rem;
  text-align: center;
}

.p-page-apply .apply-detail-note ul {
  text-align: left;
  padding: 0 0 2rem;
}

.p-page-apply .apply-detail-note ul li {
  padding: 0 0 0 1.4rem;
  margin: 0 0 2rem;
  line-height: 1.5;
  position: relative;
  text-align: justify;
  letter-spacing: 0.2rem;
}

.p-page-apply .apply-detail-note ul li:before {
  content: "";
  width: 4px;
  height: 4px;
  display: block;
  background-color: #1f1e18;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 12px;
}

.p-page-apply .apply-detail-flow {
  padding: 0 2rem 4rem;
  margin: 0 0 8rem;
  border-bottom: 1px solid #ECE8E8;
}

.p-page-apply .apply-detail-flow h2 {
  font-size: 2.4rem;
  margin: 0 0 4rem;
  letter-spacing: .6rem;
  text-align: center;
}

.p-page-apply .apply-detail-flow .apply-flow-item {
  display: flex;
  border-radius: 1rem;
  padding: 0 0 0;
  margin: 0 0 1.6rem;
  position: relative;
}

.p-page-apply .apply-detail-flow .apply-flow-item div:first-child {
  font-weight: bold;
  font-size: 1.4rem;
  text-align: left;
  min-width: 60px;
  margin: 0 2rem 0 0;
}

.p-page-apply .apply-detail-flow .apply-flow-item div:first-child img {
  max-width: 78px;
  width: 100%;
  height: auto;
}

.p-page-apply .apply-detail-flow .apply-flow-item div:first-child span {
  font-size: 6rem;
  line-height: 60px;
}

.p-page-apply .apply-detail-flow .apply-flow-item div:last-child {
  font-size: 1.4rem;
  padding: 1rem;
  text-align: left;
  background-color: #fff;
  border-radius: 1rem;
}

.p-page-apply .apply-detail-flow .apply-flow-item div:last-child img {
  width: 100%;
}

.p-page-apply .apply-detail-flow .apply-flow-item div:last-child p {
  margin: 0 0 0;
  padding: 0;
  line-height: 1.4;
}

.p-page-apply .apply-detail-flow .apply-flow-item div:last-child p span {
  display: inline-block;
  font-weight: bold;
  font-size: 1.8rem;
  margin: 0 0 .8rem;
  letter-spacing: .1rem;
}

.p-page-policy main {
  width: auto;
  margin: 0 auto;
}

.p-page-policy__inner {
  padding: 0 2rem 8rem;
  margin: 0 auto;
  height: auto;
  max-width: 960px;
}

.p-page-policy .p-page-title {
  position: sticky;
  top: 180px;
  left: 180px;
  height: 500px;
  display: none;
}

.p-page-policy .p-page-title__inner {
  position: relative;
  /*img{
          width: 150px;
          position: absolute;
          z-index: -1;
          &:nth-child(1){
            top: 40px;
            right: -60px;
          }
          &:nth-child(2){
            bottom: 140px;
            right: -20px;
          }
        }*/
}

.p-page-policy .p-page-title__inner h2 {
  font-size: 4.8rem;
  text-align: left;
  letter-spacing: 2rem;
  line-height: 6rem;
  height: auto;
  text-align: left;
  display: inline-block;
  -webkit-text-orientation: upright;
  -moz-text-orientation: upright;
  -ms-text-orientation: upright;
  text-orientation: upright;
  -webkit-writing-mode: vertical-rl;
  -moz-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -ms-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  -webkit-column-count: auto;
  -moz-column-count: auto;
  -ms-column-count: auto;
  column-count: auto;
  -webkit-text-stroke: 1.5px #1f1e18;
  text-stroke: 1.5px #1f1e18;
  color: #fbfaef;
}

.p-page-policy .p-page-content {
  text-align: left;
  width: 100%;
  margin: 0;
}

.p-page-policy .p-page-content h3 {
  font-size: 3.2rem;
  letter-spacing: .8rem;
  margin: 0 0 4rem 0;
  text-align: left;
}

.p-page-policy .p-page-content p {
  text-align: left;
  font-size: 1.6rem;
  letter-spacing: .24rem;
  line-height: 1.5;
  margin: 0 0 4rem;
}

.p-page-policy .p-page-content ul {
  padding: 0 0 0 2rem;
}

.p-page-policy .p-page-content ul li {
  list-style: disc;
}

@media screen and (min-width: 844px) {
  .p-page .p-page-about {
    width: 78vw;
    margin-left: 0;
  }
  .p-page .p-page-about main {
    padding: 0 6rem;
  }
  .p-page .p-page-about__inner {
    padding: 0 0 10rem;
    margin: 0;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
  }
  .p-page .p-page-about__inner .p-page-title {
    position: sticky;
    top: 180px;
    left: 180px;
    height: 500px;
    display: block;
  }
  .p-page .p-page-about__inner .p-page-title__inner {
    position: relative;
    /*
            h2{
              @include text-size_page-title__h2;
            }
            */
  }
  .p-page .p-page-about__inner .p-page-title__inner img {
    display: block;
    width: 48px;
    z-index: -1;
  }
  .p-page .p-page-about__inner .p-page-content {
    text-align: left;
    width: 70%;
    margin: 0;
    /*
          &__title-img{
            height: 19px;
            width: auto;
            display: block;
            margin: 0 auto 3.2rem;
          }
          */
  }
  .p-page .p-page-about__inner .p-page-content section {
    margin: 0 0 10rem 0;
    padding: 0;
  }
  .p-page .p-page-about__inner .p-page-content section h2 {
    font-size: 3.2rem;
    margin: 0 0 4.8rem;
    letter-spacing: .6rem;
  }
  .p-page .p-page-about__inner .p-page-content section p {
    font-size: 2rem;
    letter-spacing: .4rem;
    line-height: 4rem;
    margin: 0 0 4.8rem;
  }
  .p-page .p-page-about__inner .p-page-content section img {
    width: 100%;
    height: auto;
  }
  .p-page .p-page-about__inner .p-page-content dl {
    margin: 0 0 3rem;
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    align-items: center;
    border-radius: 1erm;
    padding: 2rem;
  }
  .p-page .p-page-about__inner .p-page-content dl dt {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: .4rem;
    margin: 0;
    width: 30%;
  }
  .p-page .p-page-about__inner .p-page-content dl dd {
    width: 65%;
    padding: 0 0 0 5%;
    border-left: 1px solid #ECE8E8;
  }
  .p-page .p-page-about__inner .p-page-content dl dd span {
    font-size: 1.2rem;
    display: inline-block;
    line-height: 1.4;
  }
  .p-page .p-page-overview {
    width: 78vw;
    margin-left: 0;
  }
  .p-page .p-page-overview main {
    padding: 0 6rem;
  }
  .p-page .p-page-overview__inner {
    padding: 0 0 10rem;
    margin: 0;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
  }
  .p-page .p-page-overview .p-page-title {
    position: sticky;
    top: 180px;
    left: 180px;
    height: 500px;
    display: block;
  }
  .p-page .p-page-overview .p-page-title__inner img {
    display: block;
    width: 48px;
  }
  .p-page .p-page-overview .p-page-content {
    text-align: left;
    width: 70%;
    margin: 0;
  }
  .p-page .p-page-overview .overview-intro h2 {
    font-size: 3.2rem;
    letter-spacing: .6rem;
    line-height: 4rem;
  }
  .p-page .p-page-overview .overview-intro p {
    font-size: 2rem;
    letter-spacing: .4rem;
    line-height: 4rem;
    margin: 0 0 4.8rem;
  }
  .p-page .p-page-overview .overview-detail__inner {
    display: flex;
  }
  .p-page .p-page-overview .overview-detail__inner:nth-child(5) {
    margin-right: 0;
    padding: 0 2rem;
  }
  .p-page .p-page-overview .overview-detail__inner:nth-child(5) .overview-detail__inner__item {
    margin-right: 0;
  }
  .p-page .p-page-overview .overview-detail__inner:nth-child(5) dd div {
    flex: 1;
    margin-bottom: 2rem;
  }
  .p-page .p-page-overview .overview-detail__inner:nth-child(5) dd div:last-child {
    margin-right: 0;
  }
  .p-page .p-page-overview .overview-detail__inner:nth-child(8) .overview-detail__inner__item {
    margin-right: 0;
  }
  .p-page .p-page-overview .overview-detail__inner:nth-child(8) .overview-detail__inner__item dd {
    display: flex;
    justify-content: space-between;
  }
  .p-page .p-page-overview .overview-detail__inner:nth-child(8) .overview-detail__inner__item dd div {
    flex: 1;
    margin-right: 2rem;
  }
  .p-page .p-page-overview .overview-detail__inner:nth-child(8) .overview-detail__inner__item dd div:last-child {
    margin-right: 0;
  }
  .p-page .p-page-overview .overview-detail__inner:nth-child(9) .overview-detail__inner__item {
    margin-right: 0;
  }
  .p-page .p-page-overview .overview-detail__inner__item p {
    margin-bottom: 2rem;
    letter-spacing: .24rem;
  }
  .p-page .p-page-overview .overview-detail__inner__item dl .annotation {
    font-size: 1.4rem;
    letter-spacing: .24rem;
    line-height: 2rem;
    display: inline-block;
    margin: 0 0 0;
  }
  .p-page .p-page-overview .overview-detail__inner__item dt {
    font-size: 2rem;
  }
  .p-page .p-page-overview .overview-detail__inner__item dd h4 span {
    letter-spacing: 1px;
  }
  .p-page .p-page-overview .overview-detail__inner__item dd span {
    letter-spacing: .1rem;
    line-height: 2rem;
    display: inline-block;
    margin: 1rem 0 0 0;
  }
  .p-page .p-page-overview .overview-detail-flow .flow-item div:first-child {
    min-width: 78px;
  }
  .p-page .p-page-overview .overview-detail-flow .flow-item div:last-child h3 {
    font-size: 1.8rem;
  }
  .p-page .p-page-overview .overview-detail-flow .flow-item div:last-child p {
    font-size: 1.6rem;
    letter-spacing: .2rem;
  }
  .p-page .p-page-faq {
    width: 78vw;
    margin-left: 0;
  }
  .p-page .p-page-faq main {
    width: 100%;
    margin: 0 auto;
  }
  .p-page .p-page-faq__inner {
    padding: 0 0 10rem;
    height: auto;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: space-between;
  }
  .p-page .p-page-faq__inner h2 {
    font-size: 3.2rem;
    letter-spacing: .8rem;
    margin: 0 0 8rem 0;
    text-align: left;
  }
  .p-page .p-page-faq__inner .p-page-title {
    position: sticky;
    top: 180px;
    left: 180px;
    height: 500px;
    display: block;
  }
  .p-page .p-page-faq__inner .p-page-title__inner {
    position: relative;
    /*img{
              width: 150px;
              position: absolute;
              z-index: -1;
              &:nth-child(1){
                top: 40px;
                right: -60px;
              }
              &:nth-child(2){
                bottom: 140px;
                right: -20px;
              }
            }*/
  }
  .p-page .p-page-faq__inner .p-page-title__inner h2 {
    font-size: 4.8rem;
    text-align: left;
    letter-spacing: 2rem;
    line-height: 6rem;
    height: auto;
    text-align: left;
    display: inline-block;
    -webkit-text-orientation: upright;
    -moz-text-orientation: upright;
    -ms-text-orientation: upright;
    text-orientation: upright;
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -ms-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    -webkit-column-count: auto;
    -moz-column-count: auto;
    -ms-column-count: auto;
    column-count: auto;
    -webkit-text-stroke: 1.5px #1f1e18;
    text-stroke: 1.5px #1f1e18;
    color: #fbfaef;
  }
  .p-page .p-page-faq__inner .p-page-content {
    text-align: left;
    width: 680px;
    margin: 0 2rem 0 0;
  }
  .p-page .p-page-faq__inner .p-page-content h3 {
    font-size: 3.2rem;
    letter-spacing: .8rem;
    margin: 0 0 4rem 0;
    text-align: left;
  }
  .p-page .p-page-faq__inner .faq-content {
    text-align: left;
    margin: 0 0 6rem 0rem;
  }
  .p-page .p-page-faq__inner .faq-content dt {
    font-size: 2rem;
    font-weight: bold;
    margin: 0 0 1.6rem;
    letter-spacing: .3rem;
  }
  .p-page .p-page-faq__inner .faq-content dt:before {
    content: '';
    display: inline-block;
    width: 44px;
    height: 44px;
    background-image: url(../img/faq-icon-q.svg);
    background-size: contain;
    vertical-align: middle;
    margin: -6px 0rem 0rem -5rem;
  }
  .p-page .p-page-faq__inner .faq-content dt h4 {
    margin: -36px 0 0 0;
  }
  .p-page .p-page-faq__inner .faq-content dd {
    font-size: 1.8rem;
    letter-spacing: .2rem;
    position: relative;
  }
  .p-page .p-page-faq__inner .faq-content dd:before {
    content: '';
    display: inline-block;
    width: 44px;
    height: 44px;
    background-image: url(../img/faq-icon-a.svg);
    background-size: contain;
    vertical-align: middle;
    margin: -.2rem 0rem 0 -3.6rem;
  }
  .p-page .p-page-faq__inner hr {
    border-bottom: 1px solid #ECE8E8;
    border-width: 1px 0 0 0;
    border-style: solid;
    border-color: silver;
    margin: 0 0 10rem 0;
  }
  .p-page .p-page-faq__inner .faq-content-last {
    margin: 0 0 4rem 5rem;
  }
  .p-page .p-page-faq__inner p {
    text-align: left;
    font-size: 2rem;
    letter-spacing: .6rem;
    line-height: 4rem;
    padding: 0 10rem 8rem;
  }
  .p-page .p-page-faq__inner .l-section__headline {
    margin: 0 0 0 8rem;
  }
  .p-page .p-page-policy {
    width: 78vw;
    margin-left: 0;
  }
  .p-page .p-page-policy main {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
  }
  .p-page .p-page-policy__inner {
    padding: 0 0 12rem;
    height: auto;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: space-between;
  }
  .p-page .p-page-policy .p-page-title {
    position: sticky;
    top: 180px;
    left: 180px;
    height: 500px;
    display: block;
  }
  .p-page .p-page-policy .p-page-title__inner {
    position: relative;
    /*img{
            width: 150px;
            position: absolute;
            z-index: -1;
            &:nth-child(1){
              top: 40px;
              right: -60px;
            }
            &:nth-child(2){
              bottom: 140px;
              right: -20px;
            }
          }*/
  }
  .p-page .p-page-policy .p-page-title__inner h2 {
    font-size: 4.8rem;
    text-align: left;
    letter-spacing: 2rem;
    line-height: 6rem;
    height: auto;
    text-align: left;
    display: inline-block;
    -webkit-text-orientation: upright;
    -moz-text-orientation: upright;
    -ms-text-orientation: upright;
    text-orientation: upright;
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -ms-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    -webkit-column-count: auto;
    -moz-column-count: auto;
    -ms-column-count: auto;
    column-count: auto;
    -webkit-text-stroke: 1.5px #1f1e18;
    text-stroke: 1.5px #1f1e18;
    color: #fbfaef;
  }
  .p-page .p-page .p-page-content {
    text-align: left;
    width: 680px;
    margin: 0 2rem 0 0;
  }
  .p-page .p-page .p-page-content h3 {
    font-size: 3.2rem;
    letter-spacing: .8rem;
    margin: 0 0 4rem 0;
    text-align: left;
  }
  .p-page .p-page .p-page-content p {
    text-align: left;
    font-size: 1.6rem;
    letter-spacing: .3rem;
    line-height: 1.5;
    margin: 0 0 4rem;
  }
  .p-page .p-page .p-page-content ul {
    padding: 0 0 0 2rem;
  }
  .p-page .p-page .p-page-content ul li {
    list-style: disc;
  }
  .p-page-apply {
    width: 78vw;
    margin-left: 0;
  }
  .p-page-apply main {
    padding: 0 6rem;
  }
  .p-page-apply__inner {
    padding: 0 0 10rem;
    height: auto;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: space-between;
  }
  .p-page-apply .p-page-title {
    position: sticky;
    top: 180px;
    left: 180px;
    height: 500px;
    display: block;
  }
  .p-page-apply .p-page-title__inner img {
    display: block;
    width: 48px;
  }
  .p-page-apply .p-page-content {
    text-align: left;
    width: 70%;
    margin: 0 2rem 0 0;
  }
  .p-page-apply .apply-intro {
    margin: 0;
    padding: 0 2rem;
  }
  .p-page-apply .apply-intro h2 {
    font-size: 3.2rem;
    letter-spacing: .6rem;
    line-height: 4rem;
  }
  .p-page-apply .apply-intro h2 span {
    letter-spacing: -16px;
  }
  .p-page-apply .apply-intro p {
    font-size: 2rem;
    letter-spacing: .4rem;
    line-height: 4rem;
  }
  .p-page-apply .apply-detail {
    padding: 0 2rem 4rem;
    margin: 0 0 8rem;
    border-bottom: 1px solid #ECE8E8;
  }
  .p-page-apply .apply-detail__inner {
    display: flex;
    padding: 0 2rem;
    margin: 0 0 1.6rem;
  }
  .p-page-apply .apply-detail__inner__item {
    width: 100%;
    color: #1f1e18;
    background-color: #fff;
    border-radius: 1rem;
    text-align: center;
    margin: 0 1.6rem 0rem 0;
    padding: 1.6rem 0;
  }
  .p-page-apply .apply-detail__inner__item img {
    max-width: 100%;
    width: 100%;
    height: auto;
    margin: 0 0 2rem;
  }
  .p-page-apply .apply-detail__inner__item h3 {
    font-size: 2rem;
    font-weight: bold;
    margin: 0 0 2rem;
    padding: 0 1.6rem;
    letter-spacing: .4rem;
    margin: 0 0 1.6rem 0;
    text-align: center;
    line-height: 1.2;
    min-height: 50px;
    align-items: center;
    display: flex;
    width: 100%;
    justify-content: center;
  }
  .p-page-apply .apply-detail__inner__item p {
    font-size: 3.2rem;
    text-align: center  !important;
    font-weight: bold;
    margin-bottom: 2.4rem;
    padding: 0 1.6rem;
    line-height: 1.2;
  }
  .p-page-apply .apply-detail__inner__item p span {
    font-size: 1.4rem;
    font-weight: normal;
    letter-spacing: 0rem;
  }
  .p-page-apply .apply-detail__inner__item:nth-child(even) {
    margin-right: 0;
  }
  .p-page-apply .apply-detail__inner__item .stores-btn {
    padding: 0 1.6rem;
  }
  .p-page-apply .apply-detail__inner__item .stores-btn img {
    backface-visibility: hidden !important;
  }
  .p-page-apply .apply-detail__description {
    background-color: #fff;
    border-radius: 1rem;
    padding: 1.6rem 2rem;
    text-align: left;
    padding: 0 2rem 4rem;
  }
  .p-page-apply .apply-detail__description li {
    padding: 0 0 0 2rem;
    margin: 0 0 2rem;
    line-height: 1.5;
    position: relative;
    text-align: justify;
    letter-spacing: 0.2rem;
  }
  .p-page-apply .apply-detail__description li:before {
    content: "※";
    display: block;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0px;
  }
  .p-page-apply .apply-detail-note {
    padding: 0 2rem;
    margin: 0 0 6rem;
  }
  .p-page-apply .apply-detail-note h2 {
    font-size: 2.4rem;
    margin: 0 0 4rem;
    letter-spacing: .6rem;
    text-align: center;
  }
  .p-page-apply .apply-detail-note ul {
    text-align: left;
    padding: 0 0 4rem;
  }
  .p-page-apply .apply-detail-note ul li {
    padding: 0 0 0 1.4rem;
    margin: 0 0 2rem;
    line-height: 1.5;
    position: relative;
    text-align: justify;
    letter-spacing: 0.2rem;
  }
  .p-page-apply .apply-detail-note ul li:before {
    content: "";
    width: 4px;
    height: 4px;
    display: block;
    background-color: #1f1e18;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 12px;
  }
  .p-page-apply .apply-detail-flow {
    padding: 0 2rem 4rem;
    margin: 0 0 8rem;
    border-bottom: 1px solid #ECE8E8;
  }
  .p-page-apply .apply-detail-flow h2 {
    font-size: 2.4rem;
    margin: 0 0 4rem;
    letter-spacing: .6rem;
    text-align: center;
  }
  .p-page-apply .apply-detail-flow .apply-flow-item {
    display: flex;
    border-radius: 1rem;
    padding: 0 0 0;
    margin: 0 0 1.6rem;
    position: relative;
  }
  .p-page-apply .apply-detail-flow .apply-flow-item div:first-child {
    font-weight: bold;
    font-size: 1.4rem;
    text-align: left;
    min-width: 60px;
    margin: 0 2rem 0 0;
  }
  .p-page-apply .apply-detail-flow .apply-flow-item div:first-child img {
    max-width: 78px;
    width: 100%;
    height: auto;
  }
  .p-page-apply .apply-detail-flow .apply-flow-item div:first-child span {
    font-size: 6rem;
    line-height: 60px;
  }
  .p-page-apply .apply-detail-flow .apply-flow-item div:last-child {
    display: flex;
    font-size: 1.4rem;
    padding: 1rem;
    align-items: center;
    text-align: left;
    background-color: #fff;
    border-radius: 1rem;
  }
  .p-page-apply .apply-detail-flow .apply-flow-item div:last-child img {
    width: 60%;
    margin: 0 .8rem 0 0;
  }
  .p-page-apply .apply-detail-flow .apply-flow-item div:last-child p {
    margin: 0 0 0;
    padding: 0;
    line-height: 1.4;
    letter-spacing: 0.2rem;
  }
  .p-page-apply .apply-detail-flow .apply-flow-item div:last-child p span {
    display: inline-block;
    font-weight: bold;
    font-size: 1.8rem;
    margin: 0 0 1.6rem;
    letter-spacing: .3rem;
  }
  .p-page-contact {
    width: 78vw;
    margin-left: 0;
  }
  .p-page-contact main {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
  }
  .p-page-contact__inner {
    padding: 0 0 12rem;
    height: auto;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: space-between;
  }
  .p-page-contact__inner .p-page-content p {
    font-size: 2rem;
    letter-spacing: .6rem;
    line-height: 4rem;
  }
  .p-page-contact .p-page-title {
    position: sticky;
    top: 180px;
    left: 180px;
    height: 500px;
    display: block;
  }
  .p-page-contact .p-page-title h2 {
    font-size: 4.8rem;
    text-align: left;
    letter-spacing: 2rem;
    line-height: 6rem;
    height: auto;
    text-align: left;
    display: inline-block;
    -webkit-text-orientation: upright;
    -moz-text-orientation: upright;
    -ms-text-orientation: upright;
    text-orientation: upright;
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -ms-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    -webkit-column-count: auto;
    -moz-column-count: auto;
    -ms-column-count: auto;
    column-count: auto;
    -webkit-text-stroke: 1.5px #1f1e18;
    text-stroke: 1.5px #1f1e18;
    color: #fbfaef;
  }
  .p-page-contact .p-page-content {
    text-align: left;
    width: 680px;
    margin: 0 2rem 0 0;
  }
  .p-page-contact .wpcf7-form p {
    text-align: left;
    font-size: 1.8rem;
    letter-spacing: .6rem;
    line-height: 4rem;
    padding: 0 0rem 2rem;
    margin: 0;
  }
  .p-page-contact .wpcf7-form input {
    border-radius: .8rem;
    box-shadow: none;
    padding: 1rem 0 1rem 1.6rem;
    width: 100%;
  }
  .p-page-contact .wpcf7-form select {
    border-radius: .8rem;
    box-shadow: none;
    padding: 1rem 0 1rem 1.6rem;
    width: 50%;
  }
  .p-page-contact .wpcf7-form textarea {
    border-radius: .8rem;
    box-shadow: none;
    padding: 1rem 0 1rem 1.6rem;
    margin: 0 0 4rem;
    width: 100%;
  }
  .p-page-contact .wpcf7-form .btn-wrap {
    margin: auto;
    font-weight: bold;
    text-align: center;
  }
  .p-page-contact .wpcf7-form .wpcf7-submit {
    color: #224695;
    background-color: #ff7a33;
    -webkit-transition: all .3s;
    transition: all .3s;
    text-align: center;
    display: block;
    font-size: 2.4rem;
    font-weight: bold;
    border-radius: 1rem;
    max-width: 400px;
    width: 100%;
    text-decoration: none;
    padding: 1.2rem 10rem;
    letter-spacing: .64rem;
    margin: 0 auto;
  }
}

.h-radius {
  border-radius: 1rem;
}

.h-text-left {
  text-align: left;
}

.h-text-center {
  text-align: center !important;
}

.h-text-note {
  color: #FF4738;
}

.sp-break:before,
.break:before {
  content: "\A";
  white-space: pre;
}

@media screen and (min-width: 844px) {
  .sp-break:before {
    content: "";
    margin-left: -3px;
  }
  .br-sp {
    display: none;
  }
}
