@charset "UTF-8";

/* ========================================
   Base Reset
======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-style: normal;
  list-style: none;
  text-align: left;
  color: #47413a;
  font-family: "shippori-mincho", "zen-kaku-gothic-new", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
}

html {
  scroll-behavior: smooth;
}

body {
  -webkit-text-size-adjust: 100%;
}

a {
  text-decoration: none;
}

a:hover,
input[type="submit"]:hover {
  opacity: 0.8;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: bottom;
}

.wrapper {
  margin: 0 auto;
}

.inner {
  width: 100%;
  max-width: 1200px;
}

.hidden{
	overflow:hidden;
}
/* ========================================
   Utility Classes
======================================== */

/* text / weight / align */
.border {
  border-bottom: solid 1px #333;
}

.bold {
  font-weight: 600;
}

.medium {
  font-weight: 500;
}

.center {
  text-align: center;
  justify-content: center;
}

.right {
  text-align: right;
}

.lh_none{
	line-height:100%;
}

/* position */
.child {
  position: absolute;
}

.parent {
  position: relative;
}

.position_center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.position_center_x {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.position_center_y {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

/* display */
.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
  margin: 0 auto;
}

.block {
  display: block;
}

.column {
  display: flex;
  flex-direction: column;
}

.flexbox {
  display: flex;
}

.flexboxsp {
  display: flex;
}

.flexboxsp2 {
  display: flex;
	gap:8px;
}

.wrap {
  flex-wrap: wrap;
}

.flex-center {
  justify-content: center;
}

.align-center {
  align-items: center;
  align-self: center;
}

.between {
  justify-content: space-between;
}

.around {
  justify-content: space-around;
}

.margin-center {
  margin: 0 auto;
}

/* gap */
.gap-1 {
  gap: 8px;
}
.gap-2 {
  gap: 16px;
}
.gap-3 {
  gap: 24px;
}
.gap-4 {
  gap: 32px;
}
.gap-5 {
  gap: 40px;
}
.gap-6 {
  gap: 48px;
}
.gap-7 {
  gap: 56px;
}
.gap-8 {
  gap: 64px;
}
.gap-9 {
  gap: 72px;
}
.gap-10 {
  gap: 80px;
}
.gap-11 {
  gap: 88px;
}
.gap-12 {
  gap: 96px;
}

/* margin bottom */
.mg-1 {
  margin-bottom: 8px;
}
.mg-2 {
  margin-bottom: 16px;
}
.mg-3 {
  margin-bottom: 24px;
}
.mg-4 {
  margin-bottom: 32px;
}
.mg-5 {
  margin-bottom: 40px;
}
.mg-6 {
  margin-bottom: 48px;
}
.mg-7 {
  margin-bottom: 56px;
}
.mg-8 {
  margin-bottom: 64px;
}
.mg-9 {
  margin-bottom: 72px;
}
.mg-10 {
  margin-bottom: 80px;
}
.mg-11 {
  margin-bottom: 88px;
}
.mg-12 {
  margin-bottom: 96px;
}

/* radius */
.radius-1 {
  border-radius: 8px;
}
.radius-2 {
  border-radius: 16px;
}
.radius-3 {
  border-radius: 24px;
}
.radius-4 {
  border-radius: 32px;
}
.radius-5 {
  border-radius: 40px;
}
.radius-6 {
  border-radius: 48px;
}
.radius-999 {
  border-radius: 999px;
}

/* padding */
.pd-1 {
  padding: 8px;
}
.pd-2 {
  padding: 16px;
}
.pd-3 {
  padding: 24px;
}
.pd-4 {
  padding: 32px;
}
.pd-5 {
  padding: 40px;
}
.pd-6 {
  padding: 48px;
}
.pd-7 {
  padding: 56px;
}
.pd-8 {
  padding: 64px;
}

.textbox {
  padding: 16px 32px;
}
.none {
  line-height: 100%;
}

/* PC / SP 切り替え用 */
.pc_only {
}
.sp_only {
}

/* ========================================
   Color Utilities
======================================== */

.white {
  color: #fff;
}
.bg_white {
  background-color: #fff;
}

.white2 {
  color: rgba(255, 255, 255, 0.4);
}

.main {
  color: #47413a;
}
.bg_main {
  background-color: #47413a;
}

.sub {
  color: #cdc9c1;
}

.bg_gray {
  background-color: #d6d5d2;
}

.bg_gray2 {
  background-color: #fafafa;
}

.gray{
	color:#F1EFED;
}

.bg_img{
	background-image: url(img/about.png);
    background-size: cover;
}

.border {
  border: solid 1px #cdc9c1;
}

/* 見出し系で共通で使えそうなサイズ */
.f96 {
  font-size: 96px;
}

.f80 {
  font-size: 80px;
}

.f40 {
  font-size: 40px;
}

.f32 {
  font-size: 32px;
}
.f24 {
  font-size: 24px;
}

/* ========================================
   Responsive : max-width 1199px
======================================== */

@media screen and (max-width: 1199px) {
  .pc_only {
    display: none !important;
  }

  * {
    font-size: 14px;
  }

  .flexbox {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .textbox {
    padding: 16px 16px;
  }

  th,
  td {
    display: block;
  }

  /* font調整 */
  .f96 {
    font-size: 32px;
  }
	.f80 {
  font-size: 32px;
}
  .f40 {
    font-size: 24px;
  }
  .f32 {
    font-size: 16px;
  }
  .f24 {
    font-size: 16px;
  }

  /* gap 調整 */
  .gap-1 {
    gap: 8px;
  }
  .gap-2 {
    gap: 16px;
  }
  .gap-3 {
    gap: 24px;
  }
  .gap-4,
  .gap-5,
  .gap-6,
  .gap-7,
  .gap-8 {
    gap: 16px;
  }
  .gap-9,
  .gap-10,
  .gap-11 {
    gap: 24px;
  }

  /* margin bottom 調整 */
  .mg-1 {
    margin-bottom: 8px;
  }
  .mg-2 {
    margin-bottom: 16px;
  }
  .mg-3,
  .mg-4,
  .mg-5,
  .mg-6,
  .mg-7,
  .mg-8,
  .mg-9,
  .mg-10,
  .mg-11,
  .mg-12 {
    margin-bottom: 24px;
  }

  /* radius 調整 */
  .radius-1 {
    border-radius: 8px;
  }
  .radius-2,
  .radius-3,
  .radius-4,
  .radius-5,
  .radius-6 {
    border-radius: 16px;
  }

  .radius-3.radius-999 {
    border-radius: 999px;
  }

  /* padding 調整 */
  .pd-1 {
    padding: 8px;
  }
  .pd-2,
  .pd-3,
  .pd-4,
  .pd-5,
  .pd-6,
  .pd-7,
  .pd-8 {
    padding: 16px;
  }
}

/* ========================================
   Responsive : min-width 1200px
======================================== */

@media screen and (min-width: 1200px) {
  .sp_only {
    display: none !important;
  }

  .flexbox {
    display: flex;
  }
	
	.flexboxsp2 {
  flex-direction: column!important;
		gap:4px;
}
}
