@charset "UTF-8";
/* ============================================
	ページ共通
============================================ */
* {
  margin: 0px;
  padding: 0px;
  outline: none;
  box-sizing: border-box;
}

body {
  padding: 0px;
  margin: 0px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  background-color: #fff;
  font-weight: 400;
  color: #1a1311;
}

html {
  scroll-behavior: smooth;
}

img {
  border: 0px;
  margin: 0px;
  padding: 0px;
  vertical-align: bottom;
  display: block;
  height: auto;
}

.yellow {
  color: #fdcd00;
}

.white {
  color: #ffffff;
}

.is-eventNone {
  pointer-events: none;
}

#suntoryCommonHeader {
  z-index: 100;
}

/* ============================================
	RESET
============================================ */
nav ul {
  list-style: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}

*,
::before,
::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
}

/* ============================================
	HEADER
============================================ */
header {
  position: sticky;
  display: flex;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 20px 10px 20px;
  transition-duration: 300ms;
  background-color: #ffffff;
  align-items: center;
}
@media (max-width: 750px) {
  header {
    padding: 10px 5%;
  }
}

.logo-link {
  display: block;
  width: 280px;
  transition: all 0.2s ease;
}
@media screen and (max-width: 1350px) {
  .logo-link {
    width: 19vw;
  }
}
@media (max-width: 750px) {
  .logo-link {
    width: 40vw;
  }
}
.logo-link img {
  width: 100%;
}
.logo-link:hover {
  opacity: 0.6;
}

.leftarea {
  display: flex;
  margin-left: auto;
  align-items: center;
}

.contact_area {
  display: block;
  margin-left: 10px;
}
@media (max-width: 1024px) {
  .contact_area {
    display: flex;
    margin: 30px auto;
  }
}
@media screen and (max-width: 750px) {
  .contact_area {
    display: block;
    width: 100%;
  }
}
.contact_area a {
  display: inline-block;
  width: 150px;
  padding: 23px 5px 23px 0px;
  text-align: center;
  font-size: 14px;
  line-height: 1em;
  font-weight: 500;
  text-decoration: none;
  margin-left: 5px;
  border-radius: 5px;
  transition: all 0.2s ease;
}
@media screen and (max-width: 1350px) {
  .contact_area a {
    width: 140px;
    font-size: 12px;
  }
}
@media screen and (max-width: 1120px) {
  .contact_area a {
    width: 12vw;
    font-size: 1vw;
  }
}
@media (max-width: 1024px) {
  .contact_area a {
    width: 50%;
    padding: 23px 0px;
    font-size: 14px;
    line-height: 1em;
    margin: auto;
  }
}
@media screen and (max-width: 750px) {
  .contact_area a {
    width: 100%;
    font-size: 18px;
    margin-top: 20px;
  }
}
.contact_area a:hover {
  opacity: 0.8;
}
.contact_area .cbtn {
  position: relative;
  color: #ffffff;
  background-color: #1a1311;
}
.contact_area .cbtn::after {
  content: "";
  position: absolute;
  display: block;
  width: 18px;
  height: 18px;
  right: 5px;
  top: 50%;
  margin-top: -8px;
  background: url(../images/common/icon_window-w.svg) center center/contain no-repeat;
}
.contact_area .dbtn {
  position: relative;
  color: #1a1311;
  background-color: #fdcd00;
}
.contact_area .dbtn::after {
  content: "";
  position: absolute;
  display: block;
  width: 18px;
  height: 18px;
  right: 5px;
  top: 50%;
  margin-top: -8px;
  background: url(../images/common/icon_window-b.svg) center center/contain no-repeat;
}

.nav-menu {
  padding-top: 0px !important;
  display: flex;
}
@media (max-width: 1024px) {
  .nav-menu {
    padding-top: 130px !important;
    display: block;
  }
}
@media (max-width: 1024px) {
  .nav-menu {
    position: fixed;
    z-index: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    padding-right: clamp(30px, 8vw, 60px);
    padding-bottom: clamp(30px, 8vw, 60px);
    padding-left: clamp(30px, 8vw, 60px);
    transition-duration: 300ms;
    transform: translateX(200%);
    overflow: auto;
    /* ナビメニューの背景色を変えたい時 */
    background-color: rgba(0, 0, 0, 0.8);
  }
  .nav-menu.active {
    transform: translateX(0);
  }
}
.nav-menu .menu-list {
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  justify-content: flex-end;
  gap: clamp(10px, 2.0833333333vw, 20px);
}
@media (max-width: 1024px) {
  .nav-menu .menu-list {
    display: inherit;
  }
}
@media (max-width: 1024px) {
  .nav-menu .menu-list .menu-item {
    border-style: solid;
    border-color: #fff;
    border-bottom-width: 1px;
  }
}
.nav-menu .menu-list .menu-item .menu-link {
  display: block;
  color: #1a1311;
  font-size: 14px;
  line-height: 1.2em;
  font-weight: 500;
  text-decoration: none;
  color: #1a1311;
  transition: all 0.2s ease;
}
.nav-menu .menu-list .menu-item .menu-link:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1350px) {
  .nav-menu .menu-list .menu-item .menu-link {
    font-size: 12px;
    line-height: 1.2em;
  }
}
@media screen and (max-width: 1120px) {
  .nav-menu .menu-list .menu-item .menu-link {
    font-size: 1vw;
  }
}
@media (max-width: 1024px) {
  .nav-menu .menu-list .menu-item .menu-link {
    font-size: clamp(14px, 1.0416666667vw, 20px);
    padding-top: clamp(10px, 2.6666666667vw, 20px);
    padding-bottom: clamp(10px, 2.6666666667vw, 20px);
    text-align: center;
    color: #1a1311;
  }
}
@media screen and (max-width: 750px) {
  .nav-menu .menu-list .menu-item .menu-link {
    font-size: 18px;
  }
}
.nav-menu.active .menu-link {
  color: #fff !important;
}

/* ============================================
	ハンバーガー
============================================ */
.hamburger-button {
  width: -moz-fit-content;
  width: fit-content;
  height: clamp(13px, 3.4666666667vw, 26px);
  margin-right: 0;
  margin-left: auto;
  cursor: pointer;
}

.hamburger-lines {
  position: relative;
  width: clamp(40px, 10.6666666667vw, 70px);
  height: clamp(13px, 3.4666666667vw, 26px);
  transition-duration: 300ms;
}
.hamburger-lines.active {
  height: 1px;
}
.hamburger-lines .line {
  position: absolute;
  right: 0;
  left: 0;
  display: block;
  width: 100%;
  height: clamp(1px, 0.2666666667vw, 2px);
  margin: auto;
  transition-duration: 300ms;
  /* ハンバーガーメニューの線の色を変えたい時 */
  background-color: #1a1311;
}
.hamburger-lines.active .line {
  /* ハンバーガーメニューオープン時の線の色を変えたい時 */
  background-color: #fff;
}
.hamburger-lines .line:nth-child(1), .hamburger-lines .line:nth-child(2) {
  top: 0;
}
.hamburger-lines .line:nth-child(3) {
  bottom: 0;
}

@media (max-width: 1024px) {
  .hamburger-lines {
    width: clamp(40px, 10.6666666667vw, 70px);
    height: clamp(13px, 3.4666666667vw, 26px);
  }
}
@media (max-width: 768px) and (orientation: landscape) {
  .hamburger-lines {
    width: clamp(30px, 7.4962518741vw, 50px);
    height: clamp(15px, 2.9985007496vw, 20px);
  }
}
@media (min-width: 1025px) {
  /* タブレットサイズ以上でハンバーガーメニューを丸ごと非表示 */
  .hamburger-button {
    display: none;
  }
}
/* ============================================
	KV
============================================ */
.kv {
  background: url("../images/common/kv_img.jpg") no-repeat bottom center;
  background-size: cover;
  position: relative;
}
.kv .inner {
  width: 100%;
  margin: 0;
  background-color: rgba(253, 205, 0, 0.9);
}
.kv .box {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 50px 50px 100px 50px;
  background: url("../images/common/img_phone.png") no-repeat center right;
  background-size: contain;
}
@media screen and (max-width: 750px) {
  .kv .box {
    padding: 50px 5% 50px;
  }
}
.kv .box .catch {
  width: 100%;
  max-width: 832px;
  margin: 0px 0px 20px 0px;
}
.kv .box .catch img {
  width: 100%;
  margin: 0px 0px 20px 0px;
}
.kv .box .catch ul {
  display: flex;
  width: 100%;
  margin: auto;
  padding: 0px;
  list-style: none;
}
@media screen and (max-width: 750px) {
  .kv .box .catch ul {
    display: block;
  }
}
.kv .box .catch ul li {
  display: block;
  margin: 0px 1% 0px 0px;
}
.kv .box .catch ul li .spec {
  display: inline-block;
  padding: 10px 20px;
  text-align: center;
  font-size: 20px;
  line-height: 1em;
  font-weight: 700;
  color: #fdcd00;
  background-color: #1a1311;
  transform: skewX(-15deg);
}
@media screen and (max-width: 750px) {
  .kv .box .catch ul li .spec {
    font-size: 6vw;
    margin: 0px 0px 10px 0px;
  }
}
.kv .box .btn_shop {
  display: block;
  width: 500px;
  margin: 0px 0px 20px;
  transition: all 0.2s ease;
}
@media screen and (max-width: 750px) {
  .kv .box .btn_shop {
    width: 90%;
    margin: 0 auto 30px 0;
  }
}
.kv .box .btn_shop:hover {
  opacity: 0.8;
}
.kv .box .btn_shop img {
  width: 100%;
}
.kv .box .btn_map {
  position: absolute;
  bottom: 50px;
  right: 0;
  display: block;
  width: 430px;
  margin: 0px;
  transition: all 0.2s ease;
}
@media screen and (max-width: 750px) {
  .kv .box .btn_map {
    position: relative;
    bottom: 0;
    width: 100%;
    margin: 0px -2% 0 auto;
  }
}
.kv .box .btn_map:hover {
  bottom: 53px;
  opacity: 0.9;
}
.kv .box .btn_map img {
  width: 100%;
}

/* ============================================
	TTL
============================================ */
.ttl {
  display: block;
  margin: 0px 0px 50px 0px;
}
@media (max-width: 1024px) {
  .ttl {
    margin: 0px 0px 5vw 0px;
  }
}
.ttl .main_ttl {
  display: block;
  text-align: center;
  font-size: 48px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (max-width: 750px) {
  .ttl .main_ttl {
    font-size: 8vw;
    margin-bottom: 10px;
  }
}
.ttl .sub_ttl {
  display: block;
  text-align: center;
  font-size: 24px;
  line-height: 1.6;
  font-weight: 700;
}
@media screen and (max-width: 750px) {
  .ttl .sub_ttl {
    font-size: 4vw;
  }
}

/* ============================================
	LEAD
============================================ */
.lead {
  position: relative;
  background-color: #1a1311;
  background: url("../images/common/contact_bg02.jpg") no-repeat center center;
  background-size: cover;
}
.lead:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}
.lead .inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 10px 5%;
  text-align: center;
}
.lead .inner img {
  width: 100%;
  max-width: 590px;
  margin: auto;
}

/* ============================================
	ABOUT
============================================ */
.about {
  position: relative;
  background: url("../images/common/service_bg.jpg") no-repeat bottom center;
  background-size: cover;
}
.about:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  background-color: rgba(255, 255, 255, 0.95);
}
.about .inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 80px 50px 150px 50px;
  background: url("../images/common/intro_img01.png") no-repeat 100px bottom;
  background-size: auto;
}
@media (max-width: 750px) {
  .about .inner {
    padding: 50px 5% 50px;
    background: url("../images/common/intro_img01.png") no-repeat center 40%;
    background-size: 90%;
  }
}
.about .inner .coupon {
  display: block;
  width: 400px;
  background-color: #f6dc68;
  border-radius: 10px;
  padding: 30px 0;
  margin-left: auto;
  margin-top: 100px;
  border: 5px solid #1a1311;
}
@media (max-width: 750px) {
  .about .inner .coupon {
    width: 100%;
    padding: 5%;
    margin-left: 0;
    margin-top: 70vw;
  }
}
.about .inner .coupon ._ttl {
  display: block;
  text-align: center;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 30px;
}
@media screen and (max-width: 750px) {
  .about .inner .coupon ._ttl {
    font-size: 6vw;
    margin-bottom: 20px;
  }
}
.about .inner .coupon img {
  margin: auto;
}
@media screen and (max-width: 750px) {
  .about .inner .coupon img {
    width: 90%;
  }
}
.about .inner .coupon ._btn {
  display: block;
  width: 80%;
  padding: 23px 5px 23px 0px;
  text-align: center;
  font-size: 18px;
  line-height: 1em;
  font-weight: 500;
  text-decoration: none;
  margin: 30px auto 0;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.2s ease;
}
.about .inner .coupon ._btn:hover {
  opacity: 0.8;
}
@media screen and (max-width: 750px) {
  .about .inner .coupon ._btn {
    width: 100%;
    margin: 20px auto 0;
  }
}
.about .inner .coupon .cbtn {
  position: relative;
  color: #ffffff;
  background-color: #1a1311;
}
.about .inner .coupon .cbtn::after {
  content: "";
  position: absolute;
  display: block;
  width: 18px;
  height: 18px;
  right: 5px;
  top: 50%;
  margin-top: -8px;
  background: url(../images/common/icon_window-w.svg) center center/contain no-repeat;
}

/* モーダルCSS */
.modalArea {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  display: none;
  width: 100%;
  height: 100%;
}
.modalArea .modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.9);
}
.modalArea .modalWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 840px;
  padding: 0 20px;
  transform: translate(-50%, -50%);
}
.modalArea .modalWrapper .modalContents {
  width: 100%;
  background-color: #1a1311;
  border-radius: 10px;
  padding-bottom: 20px;
}
.modalArea .modalWrapper .modalContents .step {
  max-height: 70vh;
  overflow-x: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
}
.modalArea .modalWrapper .modalContents .step img {
  width: 100%;
}
.modalArea .modalWrapper .l-popup_close,
.modalArea .modalWrapper .l-popup_close--icon {
  margin: 20px auto 0;
  width: 100px;
  position: relative;
  pointer-events: none;
  width: 48px;
  height: 48px;
}
.modalArea .modalWrapper .c-closebtn {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #404040;
  border-radius: 50%;
  pointer-events: auto;
}
.modalArea .modalWrapper .c-closebtn::after, .modalArea .modalWrapper .c-closebtn::before {
  display: block;
  content: "";
  width: 1px;
  height: 50%;
  background: #fff;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform-origin: center;
}
.modalArea .modalWrapper .c-closebtn::before {
  transform: rotate(-45deg);
}
.modalArea .modalWrapper .c-closebtn::after {
  transform: rotate(45deg);
}
.modalArea .modalWrapper .closeModal {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  cursor: pointer;
}

.modalContent {
  padding: 0;
  margin: 0 auto;
  background: none;
  border: 0;
}

/* ============================================
	REASON
============================================ */
.reason {
  position: relative;
  background-color: #fdcd00;
  z-index: 0;
  background: url(../images/common/partnership_bg.png) no-repeat top left #fdcd00;
  background-size: auto;
}
.reason:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(253, 205, 0, 0.75);
}
.reason .inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 80px 50px 100px 50px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .reason .inner {
    padding: 50px 0px 80px 0px;
  }
}
@media (max-width: 750px) {
  .reason .inner {
    width: 90%;
  }
}
.reason .inner:after {
  content: ".";
  display: block;
  visibility: hidden;
  height: 0px;
  font-size: 0em;
  line-height: 0;
  clear: both;
}
.reason .inner .box {
  position: relative;
  width: 48%;
  margin: auto;
}
@media (max-width: 1024px) {
  .reason .inner .box {
    width: 90%;
  }
}
@media (max-width: 750px) {
  .reason .inner .box {
    width: 100%;
  }
}
.reason .inner .box.mgnT {
  margin: 100px 0px 0px 0px;
}
@media (max-width: 1024px) {
  .reason .inner .box.mgnT {
    margin: 80px 0px 0px 0px;
  }
}
@media (max-width: 750px) {
  .reason .inner .box.mgnT {
    margin: 25vw 0px 0px 0px;
  }
}
.reason .inner .box.fltL {
  float: left;
}
.reason .inner .box.fltR {
  float: right;
}
.reason .inner .box .reason_img01 {
  width: 100%;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #333333;
}
@media (max-width: 750px) {
  .reason .inner .box .reason_img01 {
    width: 100%;
  }
}
.reason .inner .box .reason_img02 {
  width: 100%;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #333333;
}
@media (max-width: 750px) {
  .reason .inner .box .reason_img02 {
    width: 100%;
  }
}
.reason .inner .box .txtarea {
  position: relative;
  width: 430px;
  background-color: rgba(255, 252, 255, 0.9);
  z-index: 1;
  padding: 20px 20px;
  border: 5px solid #1a1311;
  border-radius: 10px;
}
@media (max-width: 1024px) {
  .reason .inner .box .txtarea {
    width: 90%;
    padding: 5% 3%;
  }
}
.reason .inner .box .txtarea:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #1a1311 transparent transparent transparent;
  border-width: 25px 25px 0px 0px;
}
.reason .inner .box.fltL .txtarea {
  position: absolute;
  bottom: -70px;
  right: -15px;
}
@media (max-width: 1024px) {
  .reason .inner .box.fltL .txtarea {
    right: -5%;
  }
}
@media (max-width: 750px) {
  .reason .inner .box.fltL .txtarea {
    bottom: -20vw;
    right: 0%;
  }
}
.reason .inner .box.fltR .txtarea {
  position: absolute;
  bottom: -70px;
  left: -15px;
}
@media (max-width: 1024px) {
  .reason .inner .box.fltR .txtarea {
    left: -5%;
  }
}
@media (max-width: 750px) {
  .reason .inner .box.fltR .txtarea {
    bottom: -20vw;
    left: 0%;
  }
}
.reason .inner .box .txtarea h3 {
  display: block;
  font-size: 28px;
  line-height: 1em;
  font-weight: 700;
  margin: 0px 0px 10px 0px;
  padding-bottom: 10px;
  border-bottom: 2px solid #1a1311;
}
@media (max-width: 1024px) {
  .reason .inner .box .txtarea h3 {
    font-size: 5vw;
  }
}
@media (max-width: 750px) {
  .reason .inner .box .txtarea h3 {
    font-size: 6vw;
    padding-bottom: 5%;
  }
}
.reason .inner .box .txtarea h3.fsize {
  font-size: 33px;
}
@media (max-width: 1024px) {
  .reason .inner .box .txtarea h3.fsize {
    font-size: 4.5vw;
  }
}
.reason .inner .box .txtarea p {
  display: block;
  font-size: 16px;
  line-height: 1.6em;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .reason .inner .box .txtarea p {
    font-size: 16px;
    line-height: 1.8m;
  }
}
.reason .inner .btn_map {
  display: flex;
  width: 100%;
  flex-flow: wrap;
  justify-content: space-around;
  align-items: center;
  padding-top: 100px;
}
.reason .inner .btn_map a {
  display: block;
  width: 750px;
  transition: all 0.2s ease;
}
@media (max-width: 1024px) {
  .reason .inner .btn_map a {
    width: 80%;
  }
}
@media (max-width: 750px) {
  .reason .inner .btn_map a {
    width: 100%;
    padding-top: 25vw;
  }
}
.reason .inner .btn_map a:hover {
  opacity: 0.8;
}
.reason .inner .btn_map a img {
  width: 100%;
}

/* ============================================
	SHOP
============================================ */
.shop {
  position: relative;
  background: url("../images/common/shop_img01.jpg") no-repeat top center;
  background-size: cover;
}
.shop:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(253, 205, 0, 0.9);
}
.shop .inner {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  padding: 80px 0px 100px 0px;
}
@media (max-width: 1024px) {
  .shop .inner {
    width: 90%;
    padding: 50px 0px 50px 0px;
  }
}
.shop .inner ul {
  display: flex;
  width: 100%;
  margin: auto;
  padding: 0px;
  list-style: none;
}
@media (max-width: 750px) {
  .shop .inner ul {
    display: block;
  }
}
.shop .inner ul li {
  display: block;
  margin: 0 2%;
  background-color: rgba(255, 252, 255, 0.9);
  padding: 20px 20px;
  border: 5px solid #1a1311;
  border-radius: 10px;
}
@media (max-width: 750px) {
  .shop .inner ul li {
    margin: 0 0% 20px;
  }
}
.shop .inner ul li h3 {
  position: relative;
  display: block;
  font-size: 28px;
  line-height: 1.4em;
  font-weight: 700;
  color: #1a1311;
  text-align: center;
  margin: 0px 0px 10px 0px;
  padding-bottom: 10px;
  border-bottom: 5px solid #1a1311;
}
@media (max-width: 1024px) {
  .shop .inner ul li h3 {
    font-size: 3vw;
    padding: 10px 5%;
  }
}
@media (max-width: 750px) {
  .shop .inner ul li h3 {
    font-size: 5vw;
  }
}
.shop .inner ul li .imgarea {
  width: 100%;
}
.shop .inner ul li .imgarea img {
  width: 100%;
}

/* ============================================
	THOUGHTS
============================================ */
.thoughts {
  position: relative;
  background: url("../images/common/thought_bg.jpg") no-repeat top center;
  background-size: cover;
}
.thoughts:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}
.thoughts .inner {
  position: relative;
  width: 100%;
  max-width: 750px;
  margin: auto;
  padding: 80px 0px 100px 0px;
}
@media (max-width: 1024px) {
  .thoughts .inner {
    width: 90%;
    padding: 50px 0px 50px 0px;
  }
}
.thoughts .inner .imgarea {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 50px;
  background-color: #fff;
  padding: 50px;
  border-radius: 10px;
  border: 5px solid #1a1311;
}
.thoughts .inner .imgarea img {
  width: 100%;
}
.thoughts .inner h3 {
  position: relative;
  display: block;
  font-size: 28px;
  line-height: 1em;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 0px 0px 30px 0px;
  padding-bottom: 30px;
  border-bottom: 5px solid #ffffff;
}
.thoughts .inner ._txt {
  display: block;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 700;
  color: #fff;
  margin: 0px auto 20px;
  padding: 0 30px;
}
.thoughts .inner h4 {
  display: inline-block;
  margin: 0px auto 20px;
  padding: 10px 20px;
  text-align: center;
  font-size: 24px;
  line-height: 1em;
  font-weight: 700;
  color: #1a1311;
  background-color: #fdcd00;
  transform: skewX(-15deg);
}
.thoughts .inner .hope {
  width: 100%;
  padding: 0 30px;
  font-size: 24px;
  line-height: 1.6;
  font-weight: 700;
  color: #fff;
  margin: 0px auto 20px;
}
.thoughts .inner .hope span {
  color: #fdcd00;
}
.thoughts .inner ._msg {
  display: block;
  font-size: 18px;
  line-height: 1.8em;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 100px auto 0;
  padding-bottom: 20px;
}

/* ============================================
	CONTACT
============================================ */
.contact {
  position: relative;
  background-color: #1a1311;
}
.contact:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
.contact.contactbg02 {
  background: url("../images/common/contact_bg02.jpg") no-repeat top center;
  background-size: cover;
}
.contact .inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 100px 0px;
}
@media (max-width: 1024px) {
  .contact .inner {
    width: 90%;
    padding: 50px 0px;
  }
}
.contact .inner ul {
  display: flex;
  width: 80%;
  margin: auto;
  padding: 0px;
  list-style: none;
}
@media (max-width: 750px) {
  .contact .inner ul {
    display: block;
    width: 90%;
  }
}
.contact .inner ul li {
  display: block;
  width: 100%;
  margin: 0px 1%;
  text-align: center;
}
@media (max-width: 750px) {
  .contact .inner ul li:last-child {
    margin: 0px 0%;
    margin-top: 30px;
  }
}
.contact .inner ul li h3 {
  display: block;
  width: 100%;
  font-size: 24px;
  line-height: 1.4em;
  font-weight: 700;
  color: #ffffff;
  margin: 0px 0px 10px 0px;
}
@media (max-width: 750px) {
  .contact .inner ul li h3 {
    font-size: 4vw;
  }
}
.contact .inner ul li a {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 1em;
  font-weight: 700;
  padding: 30px 0px;
  text-decoration: none;
  color: #1a1311;
  border-radius: 5px;
  transition: all 0.2s ease;
}
@media (max-width: 750px) {
  .contact .inner ul li a {
    font-size: 4vw;
  }
}
.contact .inner ul li a:hover {
  opacity: 0.8;
}
.contact .inner ul li a.cbtn {
  background-color: #fdcd00;
}
.contact .inner ul li a.cbtn::after {
  content: "";
  position: absolute;
  display: block;
  width: 24px;
  height: 24px;
  right: 10px;
  top: 50%;
  margin-top: -12px;
  background: url(../images/common/icon_window-b.svg) center center/contain no-repeat;
}
.contact .inner ul li a.dbtn {
  background-color: #ffffff;
}
.contact .inner ul li a.dbtn::after {
  content: "";
  position: absolute;
  display: block;
  width: 24px;
  height: 24px;
  right: 10px;
  top: 50%;
  margin-top: -12px;
  background: url(../images/common/icon_window-b.svg) center center/contain no-repeat;
}

/* ============================================
	MERIT
============================================ */
.merit {
  position: relative;
  background: url("../images/common/jirei_bg.png") repeat top left #ffffff;
  background-size: 140px;
}
.merit .inner {
  position: relative;
  width: 97%;
  max-width: 1200px;
  margin: auto;
  padding: 80px 0px 80px 0px;
}
@media screen and (max-width: 1100px) {
  .merit .inner {
    width: 95%;
  }
}
@media (max-width: 1024px) {
  .merit .inner {
    width: 90%;
    padding: 50px 0px 50px 0px;
  }
}
.merit .inner .box {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  padding: 20px;
  border-radius: 10px 10px 10px 10px;
  border: 5px solid #fdcd00;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background-color: #ffffff;
}
@media (max-width: 750px) {
  .merit .inner .box {
    padding-bottom: 60vh;
  }
}
.merit .inner #inline-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.merit .inner ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: auto;
  padding: 0px;
  list-style: none;
}
.merit .inner ul li {
  position: relative;
  border: 5px solid #1a1311;
  border-radius: 50px 3px 3px 3px;
  background-color: #ffffff;
  padding-bottom: 15px;
  width: 48%;
  margin: 0 4% 4% 0;
}
@media (max-width: 1024px) {
  .merit .inner ul li {
    padding-bottom: 10px;
  }
}
@media (max-width: 750px) {
  .merit .inner ul li {
    width: 100%;
    margin: 0 0% 4% 0;
  }
}
.merit .inner ul li:nth-child(2n) {
  margin: 0 0% 4% 0;
}
.merit .inner ul li .item-inner {
  display: inherit;
  grid-template-rows: inherit;
  grid-row: inherit;
}
.merit .inner ul li .com_info {
  display: flex;
  width: 100%;
  margin: 0px;
  justify-content: center;
  align-items: center;
}
.merit .inner ul li .com_info:after {
  content: "";
  display: block;
  visibility: hidden;
  height: 0px;
  font-size: 0em;
  line-height: 0;
  clear: both;
}
.merit .inner ul li .com_txt {
  display: block;
  width: 60%;
  float: left;
  margin: 0px;
  padding: 20px 0px 0px 0px;
  text-align: center;
}
@media (max-width: 1024px) {
  .merit .inner ul li .com_txt {
    padding: 6vw 2% 0px 2%;
  }
}
.merit .inner ul li .com_img {
  display: block;
  width: 40%;
  float: right;
  margin: 0px;
}
.merit .inner ul li img.logo {
  display: block;
  width: auto;
  max-width: 200px;
  height: auto;
  max-height: 40px;
  margin: 0px auto;
}
@media (max-width: 750px) {
  .merit .inner ul li img.logo {
    max-width: 35vw;
    max-height: 6vw;
  }
}
.merit .inner ul li img.photo {
  display: block;
  width: 100%;
  height: auto;
  margin: auto;
}
.merit .inner ul li h3 {
  display: block;
  text-align: center;
  font-size: 14px;
  line-height: 1.4em;
  font-weight: 700;
  padding: 10px 0px;
}
@media (max-width: 1024px) {
  .merit .inner ul li h3 {
    font-size: 2.3vw;
  }
}
@media screen and (max-width: 750px) {
  .merit .inner ul li h3 {
    font-size: 14px;
    padding: 10px 0px 0px;
  }
}
.merit .inner ul li h4 {
  display: block;
  text-align: center;
  font-size: 16px;
  line-height: 1em;
  font-weight: 700;
  padding: 10px 0px;
  background-color: #fdcd00;
}
@media (max-width: 1024px) {
  .merit .inner ul li h4 {
    font-size: 2.3vw;
  }
}
@media screen and (max-width: 750px) {
  .merit .inner ul li h4 {
    font-size: 14px;
    padding: 5px 0px 5px;
  }
}
.merit .inner ul li h4 span {
  margin: 0px 10px;
}
.merit .inner ul li h5 {
  display: block;
  font-size: 17px;
  line-height: 1.4em;
  font-weight: 700;
  padding: 0px 15px;
  margin: 10px 0px 10px 0px;
}
@media (max-width: 1024px) {
  .merit .inner ul li h5 {
    font-size: 3.2vw;
    padding: 0px 5%;
  }
}
@media screen and (max-width: 750px) {
  .merit .inner ul li h5 {
    font-size: 16px;
    padding: 0px 3%;
    margin: 5px 0px 5px 0px;
  }
}
@media screen and (max-width: 750px) {
  .merit .inner ul li h5 .sp {
    display: none;
  }
}
.merit .inner ul li p {
  display: block;
  font-size: 14px;
  line-height: 1.6em;
  font-weight: 700;
  padding: 0px 60px 0px 15px;
  /* 任意の行数を指定 */
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media (max-width: 1024px) {
  .merit .inner ul li p {
    font-size: 2.3vw;
    padding: 0px 60px 0% 5%;
  }
}
@media (max-width: 750px) {
  .merit .inner ul li p {
    font-size: 12px;
    padding: 0px 60px 0px 3%;
  }
}
.merit .inner ul li a {
  position: absolute;
  bottom: 10px;
  right: -20px;
  display: block;
  width: 70px;
  height: 70px;
  margin: auto;
  font-size: 10px;
  line-height: 1em;
  font-weight: 700;
  padding: 12px 0px;
  text-decoration: none;
  color: #ffffff;
  border-radius: 3px;
  text-align: center;
  transition: all 0.2s ease;
  background: url("../images/common/icon_arrow01.png") no-repeat 50% 70% #1a1311;
  background-size: 34px;
}
.merit .inner ul li a:hover {
  color: #1a1311;
  background: url("../images/common/icon_arrow02.png") no-repeat 50% 70% #fdcd00;
  background-size: 34px;
}
@media (max-width: 750px) {
  .merit .inner ul li a {
    position: absolute;
    bottom: -10px;
    right: -10px;
  }
}

/*
.merit:before{
	content: "";
    position: absolute;
    width: 100%;
    height: 100%;
	background-color: rgba(255,255,255,.75);
}
*/
/* ============================================
	FOOTER
============================================ */
footer {
  background-color: #1a1311;
}
footer .inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 50px 0px 10px 0px;
}
@media (max-width: 1024px) {
  footer .inner {
    width: 60%;
    padding: 30px 0px 10px 0px;
  }
}
footer .inner ul {
  display: block;
  width: 575px;
  margin: 0 0 0 auto;
  padding: 0px;
  list-style: none;
}
@media (max-width: 1024px) {
  footer .inner ul {
    width: 100%;
    margin: auto;
  }
}
footer .inner ul:after {
  content: "";
  display: block;
  visibility: hidden;
  height: 0px;
  font-size: 0em;
  line-height: 0;
  clear: both;
}
footer .inner ul li {
  display: block;
  float: left;
  margin: 0px 0px 0px 20px;
}
@media (max-width: 1024px) {
  footer .inner ul li {
    margin: 0px 3% 0px 3%;
  }
}
footer .inner ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 95px;
  height: 90px;
  background-color: #262626;
  transition: all 0.2s ease;
}
@media (max-width: 1024px) {
  footer .inner ul li a {
    width: 8vw;
    height: 8vw;
  }
}
footer .inner ul li a:hover {
  background-color: #333333;
}
footer .inner ul li img.fb {
  width: 20px;
}
@media (max-width: 1024px) {
  footer .inner ul li img.fb {
    width: 3vw;
  }
}
footer .inner ul li img.xx {
  width: 38px;
}
@media (max-width: 1024px) {
  footer .inner ul li img.xx {
    width: 5vw;
  }
}
footer .inner ul li img.ig {
  width: 40px;
}
@media (max-width: 1024px) {
  footer .inner ul li img.ig {
    width: 5vw;
  }
}
footer .inner ul li img.yt {
  width: 36px;
}
@media (max-width: 1024px) {
  footer .inner ul li img.yt {
    width: 5vw;
  }
}
footer .inner ul li img.ln {
  width: 41px;
}
@media (max-width: 1024px) {
  footer .inner ul li img.ln {
    width: 5vw;
  }
}
footer .inner p {
  display: block;
  font-size: 10px;
  line-height: 1em;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  margin: 50px auto 0px;
}

/* ============================================
	SUMMARY TTL
============================================ */
.s_ttl {
  position: relative;
}
.s_ttl .inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 100px 0px 30px 0px;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .s_ttl .inner {
    width: 95%;
  }
}
@media (max-width: 1024px) {
  .s_ttl .inner {
    padding: 80px 0px 30px 0px;
  }
}
@media (max-width: 750px) {
  .s_ttl .inner {
    padding: 50px 0px 20px 0px;
  }
}
.s_ttl .inner .sub {
  display: inline-block;
  padding: 7px 70px;
  text-align: center;
  font-size: 18px;
  line-height: 1em;
  font-weight: 700;
  color: #1a1311;
  margin: 0px 0px 10px 10px;
  background-color: #fdcd00;
  transform: skewX(-8deg);
}
@media (max-width: 1024px) {
  .s_ttl .inner .sub {
    padding: 7px 50px;
    font-size: 16px;
  }
}
@media (max-width: 750px) {
  .s_ttl .inner .sub {
    padding: 7px 20px;
    margin: 0px 0px 10px 0px;
  }
}
.s_ttl .inner h2 {
  display: block;
  font-size: 38px;
  line-height: 1.2em;
  font-weight: 700;
  color: #1a1311;
  margin: 0px;
}
@media (max-width: 1024px) {
  .s_ttl .inner h2 {
    font-size: 28px;
  }
}
@media (max-width: 750px) {
  .s_ttl .inner h2 {
    font-size: 22px;
    line-height: 1.4em;
  }
}
@media screen and (max-width: 750px) {
  .s_ttl .inner h2 .sp {
    display: none;
  }
}

/* ============================================
	SUMMARY INFO
============================================ */
.s_info {
  position: relative;
}
.s_info .inner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: auto;
}
@media screen and (max-width: 1200px) {
  .s_info .inner {
    width: 95%;
  }
}
@media screen and (max-width: 750px) {
  .s_info .inner {
    display: block;
  }
}
.s_info .inner .txtarea {
  width: 45%;
  padding: 0px 5% 0px 0px;
}
@media (max-width: 1024px) {
  .s_info .inner .txtarea {
    padding: 0% 0% 10px 0px;
  }
}
@media screen and (max-width: 750px) {
  .s_info .inner .txtarea {
    width: 100%;
  }
}
.s_info .inner .txtarea h2 {
  display: block;
  font-size: 24px;
  line-height: 1em;
  font-weight: 700;
  color: #1a1311;
  margin: 0px 0px 20px 0px;
}
@media (max-width: 1024px) {
  .s_info .inner .txtarea h2 {
    font-size: 18px;
    margin: 0px 0px 15px 0px;
    text-align: center;
  }
}
.s_info .inner .txtarea img {
  display: block;
  width: auto;
  max-width: 250px;
  height: auto;
  max-height: 50px;
  margin: 0px 0px 30px 0px;
}
@media (max-width: 1024px) {
  .s_info .inner .txtarea img {
    max-width: 25vw;
    max-height: 5vw;
    margin: 0px auto 20px auto;
  }
}
@media screen and (max-width: 750px) {
  .s_info .inner .txtarea img {
    max-width: 40vw;
    max-height: 10vw;
  }
}
.s_info .inner .txtarea h3 {
  display: block;
  font-size: 14px;
  line-height: 1em;
  font-weight: 700;
  margin: 30px 0px 10px 0px;
  padding: 0px 0px 10px 0px;
  border-bottom: 2px solid #fdcd00;
}
@media screen and (max-width: 750px) {
  .s_info .inner .txtarea h3 {
    margin: 15px 0px 10px 0px;
  }
}
.s_info .inner .txtarea p {
  display: block;
  font-size: 14px;
  line-height: 1.6em;
  font-weight: 700;
  padding-left: 10px;
  margin-bottom: 10px;
}
.s_info .inner .txtarea p span {
  font-size: 18px;
}
.s_info .inner .txtarea ul {
  display: flex;
  list-style: none;
  border: 2px solid #fdcd00;
  border-radius: 5px 5px 5px 5px;
}
@media (max-width: 1024px) {
  .s_info .inner .txtarea ul {
    display: block;
  }
}
.s_info .inner .txtarea ul li {
  display: block;
  font-size: 14px;
  line-height: 1em;
  font-weight: 700;
  padding: 10px 5px 10px 5px;
  text-align: center;
}
.s_info .inner .txtarea ul li:first-child {
  background-color: #fdcd00;
  width: 100px;
}
@media (max-width: 1024px) {
  .s_info .inner .txtarea ul li:first-child {
    width: 100%;
  }
}
.s_info .inner .txtarea ul li span {
  margin: 0px 10px;
}
@media (max-width: 1024px) {
  .s_info .inner .txtarea ul li span {
    display: block;
    line-height: 1.2em;
  }
}
@media screen and (max-width: 750px) {
  .s_info .inner .txtarea ul li span {
    display: inline-block;
  }
}
.s_info .inner .imgarea {
  width: 55%;
}
@media screen and (max-width: 750px) {
  .s_info .inner .imgarea {
    width: 100%;
  }
}
.s_info .inner .imgarea img {
  display: block;
  width: 100%;
}

/* ============================================
	SUMMARY COMMENT
============================================ */
.s_comment {
  position: relative;
}
.s_comment .inner {
  display: block;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 30px 0px 80px 0px;
}
@media screen and (max-width: 1200px) {
  .s_comment .inner {
    width: 95%;
    padding: 30px 0px 50px 0px;
  }
}
@media screen and (max-width: 750px) {
  .s_comment .inner {
    padding: 0px 0px 30px 0px;
  }
}
.s_comment .inner p {
  display: block;
  font-size: 16px;
  line-height: 2em;
  font-weight: 500;
  margin: 30px 0px 0px 0px;
}
@media (max-width: 1024px) {
  .s_comment .inner p {
    font-size: 14px;
    line-height: 1.8em;
    margin: 20px 0px 0px 0px;
  }
}
.s_comment .inner p a {
  position: relative;
  color: #1a1311;
  text-decoration: underline;
  padding-right: 20px;
}
.s_comment .inner p a:hover {
  opacity: 0.8;
}
.s_comment .inner p a::after {
  content: "";
  position: absolute;
  display: block;
  width: 18px;
  height: 18px;
  right: 0px;
  top: 50%;
  margin-top: -8px;
  background: url(../images/common/icon_window-b.svg) center center/contain no-repeat;
}
.s_comment .inner .column1 {
  display: flex;
  margin: 40px 0px 60px 0px;
  max-width: 100%;
}
.s_comment .inner .column1 img {
  display: block;
  margin: auto;
}
@media screen and (max-width: 750px) {
  .s_comment .inner .column1 img {
    width: 75%;
  }
}

/* ============================================
	SUMMARY LIST
============================================ */
.s_list {
  position: relative;
  background-color: #fdcd00;
}
.s_list .inner {
  display: block;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 80px 0px 50px 0px;
}
@media screen and (max-width: 1200px) {
  .s_list .inner {
    width: 95%;
    padding: 50px 0px 20px 0px;
  }
}
@media screen and (max-width: 750px) {
  .s_list .inner {
    padding: 30px 0px 10px 0px;
  }
}
.s_list .inner h2 {
  display: inline-block;
  font-size: 18px;
  line-height: 1em;
  font-weight: 700;
  margin: 0px 0px 20px 0px;
  color: #ffffff;
  background-color: #1a1311;
  padding: 10px 20px 10px 20px;
}
@media screen and (max-width: 1200px) {
  .s_list .inner h2 {
    font-size: 16px;
    margin: 0px 0px 15px 0px;
  }
}
@media screen and (max-width: 750px) {
  .s_list .inner h2 {
    font-size: 15px;
    padding: 10px 3% 10px 3%;
  }
}
.s_list .inner h3 {
  display: block;
  font-size: 18px;
  line-height: 1em;
  font-weight: 700;
  margin: 0px 0px 20px 0px;
}
@media screen and (max-width: 1200px) {
  .s_list .inner h3 {
    font-size: 16px;
    margin: 0px 0px 15px 0px;
  }
}
@media screen and (max-width: 750px) {
  .s_list .inner h3 {
    font-size: 15px;
  }
}
.s_list .inner p {
  display: block;
  font-size: 16px;
  line-height: 1.8em;
  font-weight: 500;
  margin: 0px 0px 40px 0px;
}
@media screen and (max-width: 1200px) {
  .s_list .inner p {
    font-size: 14px;
    margin: 0px 0px 20px 0px;
  }
}
.s_list .inner ul {
  list-style: none;
  margin: 0px 0px 30px 0px;
  padding: 0;
}
@media screen and (max-width: 1200px) {
  .s_list .inner ul {
    margin: 0px 0px 20px 0px;
  }
}
.s_list .inner ul li {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 1.6em;
  font-weight: 500;
  padding: 0px 0px 10px 15px;
}
@media screen and (max-width: 1200px) {
  .s_list .inner ul li {
    font-size: 14px;
  }
}
.s_list .inner ul li:before {
  position: absolute;
  top: 12px;
  left: 5px;
  content: "";
  width: 3px;
  height: 3px;
  display: inline-block;
  background-color: #1a1311;
  border-radius: 50%;
}
.s_list .inner ul li ul {
  list-style: none;
  margin: 10px 0px 0px 0px;
  padding: 0;
}
.s_list .inner ul li ul li {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 1.6em;
  font-weight: 500;
  padding: 0px 0px 10px 20px;
}
@media screen and (max-width: 1200px) {
  .s_list .inner ul li ul li {
    font-size: 14px;
  }
}
.s_list .inner ul li ul li:before {
  position: absolute;
  top: 12px;
  left: 10px;
  content: "";
  width: 5px;
  height: 2px;
  display: inline-block;
  background-color: #1a1311;
}

/* ============================================
	SUMMARY INTERVIEW
============================================ */
.s_interview {
  position: relative;
  padding: 80px 0px 80px 0px;
}
@media screen and (max-width: 1200px) {
  .s_interview {
    padding: 50px 0px 50px 0px;
  }
}
@media screen and (max-width: 750px) {
  .s_interview {
    padding: 30px 0px 0px 0px;
  }
}
.s_interview .inner {
  display: block;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0px 0px 30px 0px;
}
@media screen and (max-width: 1200px) {
  .s_interview .inner {
    width: 95%;
  }
}
.s_interview .inner h2 {
  display: block;
  font-size: 30px;
  line-height: 1em;
  font-weight: 700;
  margin: 0px 0px 40px 0px;
  padding: 10px 15px;
  border-left: 10px solid #fdcd00;
}
@media screen and (max-width: 1200px) {
  .s_interview .inner h2 {
    font-size: 24px;
    margin: 0px 0px 20px 0px;
  }
}
@media screen and (max-width: 750px) {
  .s_interview .inner h2 {
    font-size: 18px;
    line-height: 1.4em;
    border-left: 5px solid #fdcd00;
    padding: 5px 3%;
  }
}
.s_interview .inner h3 {
  display: block;
  font-size: 20px;
  line-height: 1em;
  font-weight: 700;
  margin: 0px 0px 40px 0px;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 1200px) {
  .s_interview .inner h3 {
    font-size: 18px;
    margin: 0px 0px 20px 0px;
  }
}
@media screen and (max-width: 750px) {
  .s_interview .inner h3 {
    font-size: 16px;
    line-height: 1.4em;
    margin: 0px 0px 10px 0px;
  }
}
.s_interview .inner h4 {
  display: block;
  font-size: 18px;
  line-height: 1em;
  font-weight: 700;
  margin: 0px 0px 20px 0px;
}
@media screen and (max-width: 1200px) {
  .s_interview .inner h4 {
    font-size: 16px;
    margin: 0px 0px 15px 0px;
  }
}
.s_interview .inner p {
  display: block;
  font-size: 16px;
  line-height: 1.8em;
  font-weight: 500;
  margin: 0px 0px 40px 0px;
}
@media screen and (max-width: 1200px) {
  .s_interview .inner p {
    font-size: 14px;
    margin: 0px 0px 20px 0px;
  }
}
.s_interview .inner p span {
  color: #fdcd00;
}
.s_interview .inner p a {
  position: relative;
  text-decoration: underline;
  color: #1a1311;
  padding-right: 20px;
}
.s_interview .inner p a:hover {
  opacity: 0.8;
}
.s_interview .inner p a::after {
  content: "";
  position: absolute;
  display: block;
  width: 18px;
  height: 18px;
  right: 0px;
  top: 50%;
  margin-top: -8px;
  background: url(../images/common/icon_window-b.svg) center center/contain no-repeat;
}
.s_interview .inner ul {
  list-style: none;
  margin: 0px 0px 30px 0px;
  padding: 0;
}
@media screen and (max-width: 1200px) {
  .s_interview .inner ul {
    margin: 0px 0px 20px 0px;
  }
}
.s_interview .inner ul li {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 1.6em;
  font-weight: 500;
  padding: 0px 0px 10px 15px;
}
@media screen and (max-width: 1200px) {
  .s_interview .inner ul li {
    font-size: 14px;
  }
}
.s_interview .inner ul li:before {
  position: absolute;
  top: 12px;
  left: 5px;
  content: "";
  width: 3px;
  height: 3px;
  display: inline-block;
  background-color: #1a1311;
  border-radius: 50%;
}
.s_interview .inner ol {
  counter-reset: listnum; /* カウンターをリセット */
  list-style: none; /* 標準のスタイルは消す */
  margin: 0px 0px 30px 0px;
  padding: 0;
}
@media screen and (max-width: 1200px) {
  .s_interview .inner ol {
    margin: 0px 0px 20px 0px;
  }
}
.s_interview .inner ol li {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 1.6em;
  font-weight: 500;
  padding: 0px 0px 5px 5px;
}
@media screen and (max-width: 1200px) {
  .s_interview .inner ol li {
    font-size: 14px;
  }
}
.s_interview .inner ol li:before {
  counter-increment: listnum;
  content: counter(listnum) "．";
  vertical-align: middle;
  font-family: roboto;
}
.s_interview .inner .column1 {
  display: flex;
  margin: 0px 0px 60px 0px;
  max-width: 100%;
}
.s_interview .inner .column1 img {
  display: block;
  margin: auto;
}
@media screen and (max-width: 750px) {
  .s_interview .inner .column1 img {
    width: 75%;
  }
}
.s_interview .inner .column2 {
  display: flex;
  margin: 0px 0px 60px 0px;
  gap: clamp(20px, 2.0833333333vw, 2%);
  flex-wrap: wrap;
}
.s_interview .inner .column2 img {
  display: block;
  margin: auto;
  width: 49%;
}
.s_interview .inner .column3 {
  display: flex;
  margin: 0px 0px 60px 0px;
  gap: clamp(20px, 2.0833333333vw, 2%);
  flex-wrap: wrap;
  justify-content: flex-start;
}
.s_interview .inner .column3 img {
  display: block;
  /*margin: auto;*/
  width: 32%;
}